結果
| 問題 | No.604 誕生日のお小遣い | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2019-10-02 09:45:44 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 1,000 ms | 
| コード長 | 453 bytes | 
| コンパイル時間 | 633 ms | 
| コンパイル使用メモリ | 62,704 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-11-21 19:30:26 | 
| 合計ジャッジ時間 | 1,222 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 21 | 
ソースコード
#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){
		if (c - money <= a - 1)
			age += c - money;
		else
			age += a;
	}
	printf( "%lld\n", age );
	return 0;
}
            
            
            
        