結果
問題 | No.1666 累乗数 |
ユーザー | lloyz |
提出日時 | 2022-01-23 14:32:44 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 235 bytes |
コンパイル時間 | 472 ms |
コンパイル使用メモリ | 82,232 KB |
実行使用メモリ | 77,220 KB |
最終ジャッジ日時 | 2024-05-07 02:19:31 |
合計ジャッジ時間 | 2,743 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
68,228 KB |
testcase_01 | AC | 58 ms
70,632 KB |
testcase_02 | AC | 58 ms
70,588 KB |
testcase_03 | AC | 61 ms
70,208 KB |
testcase_04 | AC | 57 ms
70,828 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
ソースコード
T = set([1]) i = 2 while i * i <= 10**9: for j in range(2, 60): if pow(i, j) > 10**9: break T.add(pow(i, j)) i += 1 T = sorted(T) t = int(input()) for _ in range(t): print(T[int(input()) - 1])