結果
問題 |
No.928 軽減税率?
|
ユーザー |
![]() |
提出日時 | 2019-11-23 00:09:44 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 985 ms / 1,000 ms |
コード長 | 210 bytes |
コンパイル時間 | 151 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-11 06:36:15 |
合計ジャッジ時間 | 33,452 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 34 |
ソースコード
P,Q,A=map(int,input().split()) ANS=0 for i in range(1,2*10**6+1): 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)