結果

問題 No.1223 I hate Golf
ユーザー maimai
提出日時 2020-09-11 21:26:22
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 114 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 11,376 KB
実行使用メモリ 15,304 KB
最終ジャッジ日時 2023-08-27 09:15:46
合計ジャッジ時間 3,360 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
15,020 KB
testcase_01 AC 82 ms
15,024 KB
testcase_02 AC 81 ms
15,048 KB
testcase_03 WA -
testcase_04 AC 81 ms
15,280 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 81 ms
15,152 KB
testcase_09 AC 81 ms
15,268 KB
testcase_10 AC 81 ms
15,160 KB
testcase_11 AC 81 ms
15,212 KB
testcase_12 AC 81 ms
15,208 KB
testcase_13 WA -
testcase_14 AC 82 ms
15,216 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def lscan; gets.split.map(&:to_i); end

n,k,t = lscan
puts (0<=>n) == (0<=>k) && (n + k - 1)/k <= t ? 'Yes' : 'No'
0