結果

問題 No.63 ポッキーゲーム
ユーザー rere
提出日時 2017-11-07 11:51:34
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 128 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 24,448 KB
最終ジャッジ日時 2024-11-24 04:38:34
合計ジャッジ時間 29,024 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
24,448 KB
testcase_01 AC 84 ms
24,320 KB
testcase_02 AC 77 ms
12,288 KB
testcase_03 AC 75 ms
12,160 KB
testcase_04 AC 79 ms
12,288 KB
testcase_05 AC 76 ms
12,160 KB
testcase_06 AC 76 ms
12,032 KB
testcase_07 AC 82 ms
12,160 KB
testcase_08 AC 79 ms
12,160 KB
testcase_09 AC 110 ms
12,288 KB
testcase_10 AC 398 ms
12,288 KB
testcase_11 TLE -
testcase_12 AC 687 ms
12,160 KB
testcase_13 TLE -
testcase_14 AC 695 ms
12,160 KB
testcase_15 AC 712 ms
12,160 KB
testcase_16 AC 155 ms
12,288 KB
testcase_17 TLE -
testcase_18 AC 132 ms
12,288 KB
testcase_19 AC 4,278 ms
12,288 KB
testcase_20 AC 577 ms
12,160 KB
testcase_21 AC 1,392 ms
24,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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