結果

問題 No.337 P versus NP
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-09 16:41:49
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 96 bytes
コンパイル時間 11,787 ms
コンパイル使用メモリ 420,900 KB
実行使用メモリ 53,468 KB
最終ジャッジ日時 2023-10-13 07:19:27
合計ジャッジ時間 20,903 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
52,820 KB
testcase_01 AC 290 ms
52,864 KB
testcase_02 AC 286 ms
52,948 KB
testcase_03 AC 286 ms
52,880 KB
testcase_04 AC 292 ms
53,036 KB
testcase_05 AC 288 ms
52,944 KB
testcase_06 AC 287 ms
53,320 KB
testcase_07 AC 288 ms
53,232 KB
testcase_08 AC 289 ms
53,064 KB
testcase_09 AC 290 ms
52,912 KB
testcase_10 AC 294 ms
53,468 KB
testcase_11 AC 295 ms
52,936 KB
testcase_12 AC 297 ms
52,832 KB
testcase_13 AC 290 ms
53,040 KB
testcase_14 AC 289 ms
52,916 KB
testcase_15 AC 289 ms
53,048 KB
testcase_16 AC 287 ms
52,932 KB
testcase_17 AC 288 ms
52,892 KB
testcase_18 AC 291 ms
52,988 KB
testcase_19 AC 289 ms
52,960 KB
testcase_20 AC 292 ms
52,880 KB
testcase_21 AC 285 ms
53,156 KB
testcase_22 AC 295 ms
53,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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