結果
問題 |
No.928 軽減税率?
|
ユーザー |
![]() |
提出日時 | 2019-11-22 23:57:18 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 208 bytes |
コンパイル時間 | 145 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-11 06:32:11 |
合計ジャッジ時間 | 33,752 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 20 WA * 13 TLE * 1 |
ソースコード
P,Q,A=map(int,input().split()) ANS=0 for i in range(1,2*10**6): if (100+P)*i//100<(100+Q)*i//100+A: ANS+=1 if (100+P)*i//100<(100+Q)*i//100+A: print(10**9-(2*10**6-ANS)) else: print(ANS)