結果

問題 No.604 誕生日のお小遣い
ユーザー junsui
提出日時 2019-10-02 09:38:10
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 490 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 64,376 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-03 05:55:11
合計ジャッジ時間 1,650 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 8 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#define rep( i, n, m ) for(int i = ( n ); i < ( m ); i++)

typedef unsigned long long int ll;

int main( void ){
	ll a, b, c;
	if (!scanf( "%lld%lld%lld", &a, &b, &c ))
		return 0;
	ll time = c / (( a - 1 ) + b );
	ll age = a * time;
	ll money = (( a - 1 ) + b ) * time;
	if (money < c){
		age += c - money;
		money += c - money;
		if (c - money < a-1)
			age += c - money;
		else
			age+=a;
	}
	printf( "%lld\n", age );
	return 0;
}
0