結果

問題 No.1453 手助け
ユーザー katoru_perfperfkatoru_perfperf
提出日時 2021-04-02 20:08:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 68,488 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 16:30:00
合計ジャッジ時間 1,476 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <stdio.h>

using namespace std;

int main() {
	int A, B, C, D, E;
	cin >> A >> B >> C >> D >> E;

	int num = A * (B - C);

	int step = num / 10;

	long long ans = 0;
	if (num < 10) {
		cout << num * D << endl;
		return 0;
	}
	else {
		ans += 9 * D;
	}
	for (int i = 1; i < step; i++) {
		ans += 10 * max((D - E * i), (D % E));
	}


	ans += (num % 10+1) * max((D - E * step), D % E);

	cout << ans << endl;
}
0