結果
| 問題 |
No.1409 Simple Math in yukicoder
|
| コンテスト | |
| ユーザー |
PSL24251284
|
| 提出日時 | 2021-07-01 21:41:41 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 158 bytes |
| コンパイル時間 | 288 ms |
| コンパイル使用メモリ | 81,964 KB |
| 実行使用メモリ | 76,604 KB |
| 最終ジャッジ日時 | 2024-06-28 10:54:42 |
| 合計ジャッジ時間 | 15,647 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 1 |
| other | AC * 1 WA * 57 |
ソースコード
T = int(input())
for _ in range(T):
v,x = map(int,input().split())
mod = v*x+1
a = [pow(i,v,mod) for i in range(1,x+1)]
a.sort()
print(*a)
PSL24251284