結果

問題 No.128 お年玉(1)
ユーザー 一ノ瀬卯月一ノ瀬卯月
提出日時 2019-02-11 14:19:46
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 236 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 53,500 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-01 10:57:22
合計ジャッジ時間 11,888 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 66 ms
5,248 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 WA -
testcase_10 AC 294 ms
5,248 KB
testcase_11 AC 2,358 ms
5,248 KB
testcase_12 AC 294 ms
5,248 KB
testcase_13 AC 111 ms
5,248 KB
testcase_14 AC 304 ms
5,248 KB
testcase_15 AC 598 ms
5,248 KB
testcase_16 AC 62 ms
5,248 KB
testcase_17 TLE -
testcase_18 AC 1,931 ms
5,248 KB
testcase_19 AC 31 ms
5,248 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:13:28: warning: ‘c’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   13 |         for (long i = 0; i < c; i += 1000)
      |                          ~~^~~

ソースコード

diff #

#include <iostream>

using namespace std;
int main()
{
	long a, b, c, d = 0;
	cin >> a >> b;
	if ((a / b) % 1000 != 0)
	{
		c = a / b - (a / b) % 1000;
	}

	for (long i = 0; i < c; i += 1000)
	{
		d += 1000;
	}

	cout << d;
	return 0;
}
0