結果
問題 | No.604 誕生日のお小遣い |
ユーザー | junsui |
提出日時 | 2019-10-02 09:44:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 499 bytes |
コンパイル時間 | 490 ms |
コンパイル使用メモリ | 63,884 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-03 05:55:34 |
合計ジャッジ時間 | 1,146 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 1 ms
6,820 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 1 ms
6,816 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#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 - 1; } printf( "%lld\n", age ); return 0; }