結果

問題 No.2050 Speed
ユーザー deepjugglingdeepjuggling
提出日時 2023-01-23 07:21:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 136 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 86,992 KB
実行使用メモリ 71,536 KB
最終ジャッジ日時 2023-09-07 11:57:34
合計ジャッジ時間 2,816 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,364 KB
testcase_01 AC 69 ms
71,252 KB
testcase_02 AC 69 ms
71,536 KB
testcase_03 AC 69 ms
71,364 KB
testcase_04 AC 71 ms
71,196 KB
testcase_05 AC 69 ms
71,348 KB
testcase_06 AC 68 ms
71,516 KB
testcase_07 AC 68 ms
71,344 KB
testcase_08 AC 69 ms
71,232 KB
testcase_09 AC 66 ms
71,316 KB
testcase_10 AC 67 ms
71,288 KB
testcase_11 AC 68 ms
71,312 KB
testcase_12 AC 68 ms
71,232 KB
testcase_13 AC 66 ms
71,364 KB
testcase_14 AC 67 ms
71,488 KB
testcase_15 AC 67 ms
71,368 KB
testcase_16 AC 68 ms
71,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())
if a*1000 > b*3600:
    print("KoD")
elif a*1000 < b*3600:
    print("blackyuki")
else:
    print("same")
0