結果

問題 No.272 NOT回路
ユーザー komkomhkomkomh
提出日時 2019-06-19 16:26:30
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 297 ms / 1,000 ms
コード長 147 bytes
コンパイル時間 9,632 ms
コンパイル使用メモリ 428,024 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-11-20 18:56:51
合計ジャッジ時間 14,359 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
54,052 KB
testcase_01 AC 294 ms
54,164 KB
testcase_02 AC 291 ms
54,292 KB
testcase_03 AC 290 ms
54,160 KB
testcase_04 AC 290 ms
54,312 KB
testcase_05 AC 292 ms
54,224 KB
testcase_06 AC 294 ms
54,268 KB
testcase_07 AC 293 ms
54,340 KB
testcase_08 AC 292 ms
54,136 KB
testcase_09 AC 294 ms
54,220 KB
testcase_10 AC 297 ms
54,256 KB
testcase_11 AC 288 ms
54,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val X = readLine()!!.toInt()
    val ans = when (X) {
        0 -> 1
        else -> 0
    }
    println(ans)
}
0