結果

問題 No.63 ポッキーゲーム
ユーザー mumucodermumucoder
提出日時 2018-10-28 17:54:22
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 380 ms / 5,000 ms
コード長 343 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 53,852 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 22:30:29
合計ジャッジ時間 2,571 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 6 ms
5,376 KB
testcase_11 AC 380 ms
5,376 KB
testcase_12 AC 10 ms
5,376 KB
testcase_13 AC 377 ms
5,376 KB
testcase_14 AC 10 ms
5,376 KB
testcase_15 AC 10 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 355 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 53 ms
5,376 KB
testcase_20 AC 8 ms
5,376 KB
testcase_21 AC 18 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

int main(int argc, char *argv[]) {
	int pocky_length = 0;
	int eat_length = 0;

	std::cin >> pocky_length;
	std::cin >> eat_length;

	int count = 0;
	while (1) {
		pocky_length -= (eat_length * 2);
		count++;
		if (pocky_length <= 0) {
			break;
		}
	}

	std::cout << (eat_length * (count - 1)) << std::endl;
	return 0;
}
0