結果
問題 | No.928 軽減税率? |
ユーザー | 👑 CleyL |
提出日時 | 2019-11-22 22:48:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 798 bytes |
コンパイル時間 | 554 ms |
コンパイル使用メモリ | 69,608 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-11 04:24:38 |
合計ジャッジ時間 | 1,536 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 1 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 1 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,820 KB |
testcase_20 | AC | 1 ms
6,816 KB |
testcase_21 | AC | 2 ms
6,816 KB |
testcase_22 | AC | 2 ms
6,820 KB |
testcase_23 | AC | 2 ms
6,820 KB |
testcase_24 | AC | 2 ms
6,820 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 2 ms
6,816 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
#include <iostream> #include <iomanip> using namespace std; int main(){ int p,q,a;cin>>p>>q>>a; if(p <= q){ if(a != 0)cout << 1000000000 << endl; else cout << 0 << endl; return 0; } //((100+q)/100)x+a = ((100+p)/100)x double A = (double)(100+q)/100; double B = (double)(100+p)/100; //Ax+a = Bx //a = x(B-A) double C = B-A; //a = xC int x = (double)a/C; //cout << fixed << setprecision(8); //cout << A << " " << B << " " << C << " " << x << endl; x++; int ans = x; while(x*A+a-x*B < 2.0 && ans > 0){ int X = x*A+a; int Y = x*B; if(X == Y){ ans--; //cout << "!!" << x << ": " << x*A+a << " " << x*B << endl; }else{ //cout << x << ": " << x*A+a << " " << x*B << endl; } x--; } cout << max(0,(int)ans) << endl; }