結果

問題 No.272 NOT回路
ユーザー kokoa1046kokoa1046
提出日時 2017-09-04 00:09:42
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 18 ms / 1,000 ms
コード長 55 bytes
コンパイル時間 52 ms
コンパイル使用メモリ 5,460 KB
実行使用メモリ 11,800 KB
最終ジャッジ日時 2023-08-06 17:11:53
合計ジャッジ時間 1,016 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
11,624 KB
testcase_01 AC 18 ms
11,660 KB
testcase_02 AC 18 ms
11,552 KB
testcase_03 AC 18 ms
11,792 KB
testcase_04 AC 18 ms
11,484 KB
testcase_05 AC 18 ms
11,672 KB
testcase_06 AC 17 ms
11,752 KB
testcase_07 AC 17 ms
11,596 KB
testcase_08 AC 17 ms
11,604 KB
testcase_09 AC 17 ms
11,664 KB
testcase_10 AC 17 ms
11,676 KB
testcase_11 AC 17 ms
11,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define a (read))
(if (= a 1) (print "0") (print "1"))
0