結果

問題 No.2050 Speed
ユーザー Ekiben542Ekiben542
提出日時 2024-01-23 15:25:45
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 93 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-01-23 15:25:49
合計ジャッジ時間 3,462 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 80 ms
16,256 KB
testcase_02 AC 82 ms
16,256 KB
testcase_03 AC 83 ms
16,256 KB
testcase_04 AC 82 ms
16,256 KB
testcase_05 AC 82 ms
16,256 KB
testcase_06 AC 82 ms
16,256 KB
testcase_07 AC 82 ms
16,256 KB
testcase_08 AC 83 ms
16,256 KB
testcase_09 AC 82 ms
16,256 KB
testcase_10 AC 85 ms
16,256 KB
testcase_11 AC 86 ms
16,256 KB
testcase_12 AC 79 ms
16,256 KB
testcase_13 AC 78 ms
16,256 KB
testcase_14 AC 81 ms
16,256 KB
testcase_15 AC 98 ms
16,256 KB
testcase_16 AC 78 ms
16,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

A,B=gets.split.map(&:to_i)
puts A*1000/3600<B ? "blackyuki" : A*1000/3600>B ? "KoD" : "same"
0