結果
問題 |
No.928 軽減税率?
|
ユーザー |
![]() |
提出日時 | 2019-11-22 21:53:24 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 170 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 12,288 KB |
実行使用メモリ | 24,136 KB |
最終ジャッジ日時 | 2024-10-11 03:25:38 |
合計ジャッジ時間 | 4,557 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | TLE * 1 -- * 1 |
other | -- * 34 |
ソースコード
P, Q, A = map(int, input().split()) def count(x): ans = 0 for i in range(1, x + 1): if (P - Q) * i < A: ans += 1 return ans count(10 ** 9)