結果
| 問題 | No.354 メルセンヌ素数 |
| コンテスト | |
| ユーザー |
双六
|
| 提出日時 | 2020-08-05 22:25:13 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 82 ms / 1,000 ms |
| + 196µs | |
| コード長 | 257 bytes |
| 記録 | |
| コンパイル時間 | 1,502 ms |
| コンパイル使用メモリ | 95,980 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2026-08-29 16:31:26 |
| 合計ジャッジ時間 | 2,485 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 13 |
ソースコード
import sys; input = sys.stdin.buffer.readline sys.setrecursionlimit(10**7) from collections import defaultdict def getlist(): return list(map(int, input().split())) #処理内容 def main(): p = int(input()) print(p) if __name__ == '__main__': main()
双六