結果

問題 No.163 cAPSlOCK
ユーザー tabataba
提出日時 2024-08-30 09:22:02
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 472 bytes
コンパイル時間 8,339 ms
コンパイル使用メモリ 167,656 KB
実行使用メモリ 181,600 KB
最終ジャッジ日時 2024-08-30 09:22:23
合計ジャッジ時間 11,147 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
27,136 KB
testcase_01 AC 43 ms
26,460 KB
testcase_02 AC 46 ms
26,604 KB
testcase_03 AC 46 ms
27,008 KB
testcase_04 AC 46 ms
26,624 KB
testcase_05 AC 53 ms
27,136 KB
testcase_06 AC 46 ms
26,880 KB
testcase_07 AC 46 ms
27,008 KB
testcase_08 AC 52 ms
27,008 KB
testcase_09 AC 46 ms
26,624 KB
testcase_10 AC 43 ms
26,468 KB
testcase_11 AC 51 ms
26,880 KB
testcase_12 AC 43 ms
26,604 KB
testcase_13 AC 51 ms
26,880 KB
testcase_14 AC 43 ms
26,480 KB
testcase_15 AC 43 ms
26,752 KB
testcase_16 AC 45 ms
27,008 KB
testcase_17 AC 45 ms
26,468 KB
testcase_18 AC 51 ms
26,748 KB
testcase_19 AC 44 ms
26,480 KB
testcase_20 AC 44 ms
26,740 KB
testcase_21 AC 43 ms
26,880 KB
testcase_22 AC 42 ms
181,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (128 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;
public class Program
{
    static void Main()
    {
        var s = Console.ReadLine() ?? "";
        var b = System.Text.Encoding.UTF8.GetBytes(s);
        for (int i = 0; i < b.Length; i++)
        {
            b[i] ^= 0x20;
        }
        Console.WriteLine(System.Text.Encoding.UTF8.GetString(b));
    }

    static long[] ReadLineLong()
    {
        var s = Console.ReadLine() ?? "";
        return s.Split(' ').Select(long.Parse).ToArray();
    }
}
0