結果

問題 No.337 P versus NP
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-09 16:41:49
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 96 bytes
コンパイル時間 10,837 ms
コンパイル使用メモリ 431,052 KB
実行使用メモリ 51,688 KB
最終ジャッジ日時 2024-09-15 04:35:23
合計ジャッジ時間 19,298 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
51,520 KB
testcase_01 AC 307 ms
51,164 KB
testcase_02 AC 310 ms
51,440 KB
testcase_03 AC 310 ms
51,440 KB
testcase_04 AC 314 ms
51,336 KB
testcase_05 AC 313 ms
51,496 KB
testcase_06 AC 311 ms
51,344 KB
testcase_07 AC 307 ms
51,496 KB
testcase_08 AC 309 ms
51,440 KB
testcase_09 AC 312 ms
51,252 KB
testcase_10 AC 308 ms
51,688 KB
testcase_11 AC 311 ms
51,524 KB
testcase_12 AC 316 ms
51,480 KB
testcase_13 AC 313 ms
51,472 KB
testcase_14 AC 319 ms
51,552 KB
testcase_15 AC 313 ms
51,016 KB
testcase_16 AC 309 ms
51,044 KB
testcase_17 AC 314 ms
51,440 KB
testcase_18 AC 313 ms
51,132 KB
testcase_19 AC 313 ms
51,296 KB
testcase_20 AC 314 ms
51,044 KB
testcase_21 AC 314 ms
51,564 KB
testcase_22 AC 317 ms
51,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){val(n,p)=readLine()!!.split(" ").map {it.toInt()}
println(if(p==n*p){"="}else{"!="})}
0