結果

問題 No.176 2種類の切手
ユーザー saytakaPCsaytakaPC
提出日時 2015-04-02 23:50:38
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 312 bytes
コンパイル時間 1,348 ms
コンパイル使用メモリ 157,908 KB
実行使用メモリ 14,016 KB
最終ジャッジ日時 2024-04-16 21:27:24
合計ジャッジ時間 4,039 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
typedef long long ll;
int main(){
	ll a,b,t,ans=2000000001;
	cin>>a>>b>>t;
	for(int i=0;i<=(t/b)+1;i++){
		ll tmp=t-b*i;
		if(tmp%a==0){
			ans=t;
			break;
		}else{
			ans=min(ans,(tmp/a+1)*a+b*i);
		}
	}
	cout<<ans<<endl;
} 
0