結果

問題 No.2050 Speed
ユーザー ShirotsumeShirotsume
提出日時 2022-08-28 02:09:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 247 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 53,652 KB
最終ジャッジ日時 2024-10-15 03:11:47
合計ジャッジ時間 1,616 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 36 ms
51,584 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 36 ms
51,456 KB
testcase_11 AC 36 ms
51,456 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353


a, b = mi()

print('KoD' if a * 1000 > b * 3600 else 'blackyuki')
0