結果
| 問題 |
No.2324 Two Countries within UEC
|
| コンテスト | |
| ユーザー |
Schnee
|
| 提出日時 | 2023-05-28 15:35:03 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 298 bytes |
| コンパイル時間 | 84 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 1,599,200 KB |
| 最終ジャッジ日時 | 2024-12-27 07:26:23 |
| 合計ジャッジ時間 | 34,767 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 WA * 1 RE * 13 TLE * 4 MLE * 15 |
ソースコード
n, m, p, q = map(int, input().split())
inv = [0]*(n+1)
for i in range(1, n+1):
inv[i] = pow(i, p-2, p)
for _ in range(q):
x, f = map(int, input().split())
y_cand = f*inv[x]%p
if y_cand == 0:
y_cnt = m//p
else:
y_cnt = m//p + int(m%p >= y_cand)
print(y_cnt)
Schnee