Submission #3630030


Source Code Expand

using System;
using System.Collections.Generic;
class Program
{
	static void Main(string[] args)
	{
		string str = Console.ReadLine();
		if(str.Substring(0,1)==str.Substring(2,1)&&str.Substring(1,1)==str.Substring(3,1)){
			Console.WriteLine("Yes");
		} else {
			Console.WriteLine("No");
		}
	}
}

Submission Info

Submission Time
Task A - ニコニコ文字列判定
User miku
Language C# (Mono 4.6.2.0)
Score 100
Code Size 310 Byte
Status AC
Exec Time 20 ms
Memory 11092 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 2
AC × 10
Set Name Test Cases
Sample 00_example_01.txt, 00_example_02.txt
All 00_example_01.txt, 00_example_02.txt, 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt
Case Name Status Exec Time Memory
00_example_01.txt AC 20 ms 11092 KB
00_example_02.txt AC 19 ms 11092 KB
01.txt AC 19 ms 9044 KB
02.txt AC 19 ms 9044 KB
03.txt AC 20 ms 11092 KB
04.txt AC 20 ms 11092 KB
05.txt AC 19 ms 11092 KB
06.txt AC 20 ms 11092 KB
07.txt AC 20 ms 11092 KB
08.txt AC 20 ms 11092 KB