結果

問題 No.163 cAPSlOCK
ユーザー cccccc
提出日時 2022-07-14 17:44:06
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 314 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 14,904 ms
コンパイル使用メモリ 169,356 KB
実行使用メモリ 187,404 KB
最終ジャッジ日時 2024-06-26 01:34:53
合計ジャッジ時間 18,004 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
30,528 KB
testcase_01 AC 314 ms
30,536 KB
testcase_02 AC 306 ms
30,548 KB
testcase_03 AC 309 ms
30,656 KB
testcase_04 AC 303 ms
30,772 KB
testcase_05 AC 309 ms
30,660 KB
testcase_06 AC 308 ms
30,788 KB
testcase_07 AC 307 ms
30,836 KB
testcase_08 AC 308 ms
30,404 KB
testcase_09 AC 309 ms
30,660 KB
testcase_10 AC 307 ms
30,520 KB
testcase_11 AC 306 ms
30,532 KB
testcase_12 AC 310 ms
30,276 KB
testcase_13 AC 310 ms
30,528 KB
testcase_14 AC 306 ms
30,664 KB
testcase_15 AC 307 ms
30,784 KB
testcase_16 AC 306 ms
30,908 KB
testcase_17 AC 306 ms
30,568 KB
testcase_18 AC 308 ms
30,532 KB
testcase_19 AC 312 ms
30,684 KB
testcase_20 AC 311 ms
30,556 KB
testcase_21 AC 309 ms
30,656 KB
testcase_22 AC 309 ms
187,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (126 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
class Program
{
    static void Main()
    {
        var st = Console.ReadLine().ToString();
        var ans = "";

        foreach(var i in st)
        {
            if (char.IsUpper(i))
            {
                ans += char.ToLower(i);
            }
            else if (char.IsLower(i))
            {
                ans += char.ToUpper(i);
            }
        }
        Console.WriteLine(ans);
    }
}
0