結果

問題 No.63 ポッキーゲーム
ユーザー shinjiwebshinjiweb
提出日時 2016-05-25 23:41:46
言語 Ruby
(3.2.2)
結果
WA  
実行時間 -
コード長 66 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 11,372 KB
実行使用メモリ 19,704 KB
最終ジャッジ日時 2023-07-29 10:10:09
合計ジャッジ時間 8,658 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
19,604 KB
testcase_01 AC 69 ms
15,104 KB
testcase_02 WA -
testcase_03 AC 69 ms
15,064 KB
testcase_04 AC 73 ms
15,208 KB
testcase_05 WA -
testcase_06 AC 70 ms
15,092 KB
testcase_07 AC 74 ms
15,100 KB
testcase_08 WA -
testcase_09 AC 89 ms
15,280 KB
testcase_10 WA -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

l, k = gets.split.map(&:to_i)
m = 0
m += k while m + k < l / 2
p m
0