結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,044 KB
testcase_01 AC 36 ms
53,140 KB
testcase_02 AC 37 ms
52,768 KB
testcase_03 AC 36 ms
52,592 KB
testcase_04 AC 37 ms
52,620 KB
testcase_05 AC 36 ms
52,612 KB
testcase_06 AC 36 ms
52,112 KB
testcase_07 AC 36 ms
52,444 KB
testcase_08 AC 37 ms
52,196 KB
testcase_09 AC 37 ms
52,956 KB
testcase_10 AC 35 ms
52,092 KB
testcase_11 AC 36 ms
53,556 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