結果

問題 No.272 NOT回路
ユーザー Keita YamadaKeita Yamada
提出日時 2021-04-12 20:44:03
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 271 ms / 1,000 ms
コード長 62 bytes
コンパイル時間 11,107 ms
コンパイル使用メモリ 411,888 KB
実行使用メモリ 50,468 KB
最終ジャッジ日時 2023-09-11 02:03:18
合計ジャッジ時間 16,008 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
50,316 KB
testcase_01 AC 266 ms
50,224 KB
testcase_02 AC 271 ms
50,316 KB
testcase_03 AC 271 ms
50,284 KB
testcase_04 AC 269 ms
50,240 KB
testcase_05 AC 269 ms
50,440 KB
testcase_06 AC 267 ms
50,368 KB
testcase_07 AC 266 ms
50,212 KB
testcase_08 AC 265 ms
50,200 KB
testcase_09 AC 268 ms
50,468 KB
testcase_10 AC 267 ms
50,252 KB
testcase_11 AC 271 ms
50,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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