結果
問題 | No.604 誕生日のお小遣い |
ユーザー | ohreitetsu |
提出日時 | 2018-05-21 23:03:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 451 bytes |
コンパイル時間 | 611 ms |
コンパイル使用メモリ | 63,472 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-21 19:24:07 |
合計ジャッジ時間 | 1,396 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#include <iostream> using namespace std; typedef long long LL; int main(int argc, char* argv[]) { LL A,B,C; cin>>A>>B>>C; if (A>C){ cout<<C<<endl; return 0; }else if (A==C){ cout<<A<<endl; return 0; } LL X=C/(A-1+B); LL Year=X*A; LL Sum=X*(A-1+B); while(Sum<C){ if (Sum+A-1+B>=C){ if (Sum+A-1<C){ Sum+=A-1; Year+=A; }else{ Year+=C-Sum; } break; } Year+=A; Sum+=A-1+B; } cout<<Year<<endl; return 0; }