結果

問題 No.928 軽減税率?
ユーザー kotamanegikotamanegi
提出日時 2019-11-22 21:47:28
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,275 bytes
コンパイル時間 1,056 ms
コンパイル使用メモリ 148,068 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 19:59:07
合計ジャッジ時間 34,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 894 ms
5,248 KB
testcase_01 AC 878 ms
5,376 KB
testcase_02 AC 896 ms
5,376 KB
testcase_03 AC 884 ms
5,376 KB
testcase_04 AC 877 ms
5,376 KB
testcase_05 AC 878 ms
5,376 KB
testcase_06 AC 889 ms
5,376 KB
testcase_07 AC 880 ms
5,376 KB
testcase_08 AC 873 ms
5,376 KB
testcase_09 AC 880 ms
5,376 KB
testcase_10 AC 885 ms
5,376 KB
testcase_11 AC 874 ms
5,376 KB
testcase_12 AC 878 ms
5,376 KB
testcase_13 AC 899 ms
5,376 KB
testcase_14 AC 888 ms
5,376 KB
testcase_15 AC 876 ms
5,376 KB
testcase_16 AC 883 ms
5,376 KB
testcase_17 AC 862 ms
5,376 KB
testcase_18 AC 862 ms
5,376 KB
testcase_19 AC 865 ms
5,376 KB
testcase_20 AC 889 ms
5,376 KB
testcase_21 AC 881 ms
5,376 KB
testcase_22 AC 878 ms
5,376 KB
testcase_23 WA -
testcase_24 AC 878 ms
5,376 KB
testcase_25 AC 865 ms
5,376 KB
testcase_26 AC 867 ms
5,376 KB
testcase_27 AC 868 ms
5,376 KB
testcase_28 AC 869 ms
5,376 KB
testcase_29 AC 864 ms
5,376 KB
testcase_30 AC 871 ms
5,376 KB
testcase_31 AC 867 ms
5,376 KB
testcase_32 AC 870 ms
5,376 KB
testcase_33 AC 870 ms
5,376 KB
testcase_34 AC 872 ms
5,376 KB
testcase_35 AC 877 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define  _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <algorithm>
#include <utility>
#include <functional>
#include <cstring>
#include <queue>
#include <stack>
#include <math.h>
#include <iterator>
#include <vector>
#include <string>
#include <set>
#include <math.h>
#include <iostream>
#include <random>
#include<map>
#include <iomanip>
#include <time.h>
#include <stdlib.h>
#include <list>
#include <typeinfo>
#include <list>
#include <set>
#include <cassert>
#include<fstream>
#include <unordered_map>
#include <cstdlib>
#include <complex>
#include <cctype>
#include <bitset>
using namespace std;
typedef string::const_iterator State;
#define Ma_PI 3.141592653589793
#define eps 1e-5
#define LONG_INF 2000000000000000000LL
#define GOLD 1.61803398874989484820458
#define MAX_MOD 1000000007LL
#define GYAKU 500000004LL
#define MOD 998244353LL
#define seg_size 262144
#define REP(a,b) for(long long a = 0;a < b;++a)
int main() {
#define int long long
	int p, q, a;
	cin >> p >> q >> a;
	int ans = 0;
	int te = 400000000;
	for (long long i = 1; i <= te; ++i) {
		int ten = (100LL + p) * i;
		ten /= 100LL;
		int soto = (100LL + q) * i;
		soto /= 100LL;
		soto += a;
		if (ten < soto) {
			ans++;
		}
	}
	if (p < q) {
		ans += 1000000000 - te;
	}
	cout << ans << endl;
}
0