結果

問題 No.272 NOT回路
ユーザー mtsu_friendsmtsu_friends
提出日時 2021-04-05 13:21:55
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 133 bytes
コンパイル時間 1,634 ms
コンパイル使用メモリ 64,692 KB
実行使用メモリ 22,656 KB
最終ジャッジ日時 2023-08-29 04:37:03
合計ジャッジ時間 3,337 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
20,564 KB
testcase_01 AC 54 ms
20,556 KB
testcase_02 AC 54 ms
20,832 KB
testcase_03 AC 53 ms
20,520 KB
testcase_04 AC 53 ms
20,496 KB
testcase_05 AC 54 ms
20,516 KB
testcase_06 AC 53 ms
20,560 KB
testcase_07 AC 55 ms
20,668 KB
testcase_08 AC 55 ms
22,656 KB
testcase_09 AC 55 ms
20,576 KB
testcase_10 AC 55 ms
20,640 KB
testcase_11 AC 54 ms
20,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

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