結果

問題 No.400 鏡
ユーザー abL8ZLsTbFabL8ZLsTbF
提出日時 2016-07-25 22:56:31
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 104,240 KB
実行使用メモリ 22,572 KB
最終ジャッジ日時 2023-08-06 13:48:13
合計ジャッジ時間 3,747 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
22,572 KB
testcase_01 AC 50 ms
22,484 KB
testcase_02 AC 50 ms
20,512 KB
testcase_03 AC 50 ms
22,436 KB
testcase_04 AC 51 ms
20,452 KB
testcase_05 AC 50 ms
20,444 KB
testcase_06 AC 50 ms
20,380 KB
testcase_07 AC 50 ms
20,592 KB
testcase_08 AC 51 ms
20,464 KB
testcase_09 AC 50 ms
18,380 KB
testcase_10 AC 50 ms
20,568 KB
testcase_11 AC 50 ms
18,408 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Program
{
	public static void Main()
	{
		string str = Console.ReadLine();
		for (int i = 0; i < str.Length; i++)
		{
			Console.Write(str[str.Length - i - 1] == '<' ? '>' : '<');
		}
		Console.WriteLine();
	}
}
0