結果

問題 No.604 誕生日のお小遣い
ユーザー araki_lukaaraki_luka
提出日時 2017-12-15 18:48:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 737 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 64,272 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-08 12:14:48
合計ジャッジ時間 1,208 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
// #include <time.h>

using namespace std;

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	unsigned long long a, b, c;

	cin >> a >> b >> c;

    auto start = clock();
	unsigned long long delta = (a - 1);
	if (delta > c) {
		cout << c;
// 		cout << "\n" << clock() - start << endl;
	}
	else {
	unsigned long long delta2 = delta + b;
		if (delta2 > c) {
			cout << a;
// 			cout << "\n" << clock() - start << endl;
		}
		else {
			unsigned long long n = (unsigned long long)(c / delta2);
			if (delta + n*delta2 > c) {
				cout << c + n * (a - delta2);
				// 		cout << "\n" << clock() - start << endl;

			}
			else {
				cout << a * (n + 1);
				// 		cout << "\n" << clock() - start << endl;

			}
		}
	}
}
0