結果
| 問題 |
No.1409 Simple Math in yukicoder
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-02-26 23:05:16 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 252 bytes |
| コンパイル時間 | 350 ms |
| コンパイル使用メモリ | 81,968 KB |
| 実行使用メモリ | 82,620 KB |
| 最終ジャッジ日時 | 2024-10-02 15:57:42 |
| 合計ジャッジ時間 | 19,479 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 TLE * 4 -- * 32 |
ソースコード
import sys,os,io input = sys.stdin.readline #input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline T = int(input()) for t in range(T): v, x = map(int, input().split()) p = v*x+1 ans = [i for i in range(1,p+1) if pow(i,x,p)==1] print(*ans)