結果

問題 No.272 NOT回路
ユーザー mtsu_friendsmtsu_friends
提出日時 2021-04-05 13:19:41
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 164 bytes
コンパイル時間 1,910 ms
コンパイル使用メモリ 60,884 KB
実行使用メモリ 22,776 KB
最終ジャッジ日時 2023-08-29 04:06:25
合計ジャッジ時間 3,029 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
20,684 KB
testcase_01 AC 55 ms
22,712 KB
testcase_02 AC 55 ms
20,760 KB
testcase_03 AC 54 ms
20,652 KB
testcase_04 AC 56 ms
20,672 KB
testcase_05 AC 55 ms
20,724 KB
testcase_06 AC 55 ms
22,776 KB
testcase_07 AC 54 ms
18,772 KB
testcase_08 AC 55 ms
20,636 KB
testcase_09 AC 56 ms
20,760 KB
testcase_10 AC 55 ms
20,728 KB
testcase_11 AC 56 ms
20,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

class Yuki272 {
    static void Main(string[] _args) {
        var input = int.Parse(Console.ReadLine());
        Console.WriteLine(1-input);
    }
}
0