結果

問題 No.272 NOT回路
ユーザー Keita YamadaKeita Yamada
提出日時 2021-04-12 20:44:03
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 276 ms / 1,000 ms
コード長 62 bytes
コンパイル時間 10,033 ms
コンパイル使用メモリ 426,032 KB
実行使用メモリ 49,940 KB
最終ジャッジ日時 2024-06-28 16:34:59
合計ジャッジ時間 13,531 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 259 ms
49,560 KB
testcase_01 AC 263 ms
49,600 KB
testcase_02 AC 269 ms
49,880 KB
testcase_03 AC 271 ms
49,760 KB
testcase_04 AC 276 ms
49,644 KB
testcase_05 AC 273 ms
49,940 KB
testcase_06 AC 270 ms
49,896 KB
testcase_07 AC 274 ms
49,868 KB
testcase_08 AC 271 ms
49,604 KB
testcase_09 AC 274 ms
49,708 KB
testcase_10 AC 272 ms
49,644 KB
testcase_11 AC 273 ms
49,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    println(if(readLine() == "0") "1" else "0")
}
0