結果

問題 No.2050 Speed
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-09 16:54:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 110 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 53,948 KB
最終ジャッジ日時 2024-09-09 16:54:21
合計ジャッジ時間 1,754 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
52,940 KB
testcase_02 WA -
testcase_03 AC 37 ms
52,408 KB
testcase_04 WA -
testcase_05 AC 36 ms
52,576 KB
testcase_06 WA -
testcase_07 AC 37 ms
52,360 KB
testcase_08 AC 37 ms
52,968 KB
testcase_09 AC 37 ms
52,440 KB
testcase_10 AC 38 ms
52,400 KB
testcase_11 AC 38 ms
52,068 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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