結果

問題 No.63 ポッキーゲーム
ユーザー rere
提出日時 2017-11-07 11:47:36
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 113 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 24,192 KB
最終ジャッジ日時 2024-11-24 04:37:19
合計ジャッジ時間 31,589 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
24,192 KB
testcase_01 AC 91 ms
24,192 KB
testcase_02 AC 85 ms
12,032 KB
testcase_03 AC 90 ms
12,288 KB
testcase_04 AC 89 ms
12,288 KB
testcase_05 AC 92 ms
12,160 KB
testcase_06 AC 86 ms
12,160 KB
testcase_07 AC 94 ms
12,160 KB
testcase_08 AC 90 ms
12,160 KB
testcase_09 AC 127 ms
12,032 KB
testcase_10 AC 494 ms
12,288 KB
testcase_11 TLE -
testcase_12 AC 880 ms
12,160 KB
testcase_13 TLE -
testcase_14 AC 904 ms
12,288 KB
testcase_15 AC 860 ms
12,032 KB
testcase_16 AC 183 ms
12,032 KB
testcase_17 TLE -
testcase_18 AC 153 ms
12,160 KB
testcase_19 TLE -
testcase_20 AC 745 ms
12,288 KB
testcase_21 AC 1,803 ms
24,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a,b = gets.split(" ").map(&:to_i)
sum = 0
loop{
	if (a - b*2) <= 0
		break
	end
	a = a - b*2
	sum += b
}
puts sum
0