結果
問題 | No.928 軽減税率? |
ユーザー |
![]() |
提出日時 | 2019-11-22 22:28:27 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 175 bytes |
コンパイル時間 | 560 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 64,896 KB |
最終ジャッジ日時 | 2024-10-11 04:13:33 |
合計ジャッジ時間 | 2,912 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 17 WA * 14 RE * 3 |
ソースコード
P, Q, A = map(int, input().split())x = int(A / ((P-Q)/100))cnt = 0for i in range(x, 0, -1):if int(i * (1+P/100)) < int(i * (1+Q/100)) + A:cnt += 1print(cnt)