結果
問題 |
No.928 軽減税率?
|
ユーザー |
![]() |
提出日時 | 2019-11-22 22:53:19 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 149 bytes |
コンパイル時間 | 397 ms |
コンパイル使用メモリ | 82,328 KB |
実行使用メモリ | 60,912 KB |
最終ジャッジ日時 | 2024-10-11 04:31:47 |
合計ジャッジ時間 | 15,954 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | WA * 34 |
ソースコード
P,Q,A=map(int,input().split()) ANS=10**9 for i in range(10**9-5*10**7,10**9+1): if int((1+P/100)*i)<int((1+Q/100)*i)+A: ANS-=1 print(ANS)