結果
| 問題 | No.2410 Nine Numbers |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-08-11 21:45:28 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 27 ms / 2,000 ms |
| + 197µs | |
| コード長 | 261 bytes |
| 記録 | |
| コンパイル時間 | 82 ms |
| コンパイル使用メモリ | 81,672 KB |
| 実行使用メモリ | 57,156 KB |
| 最終ジャッジ日時 | 2026-09-25 22:45:50 |
| 合計ジャッジ時間 | 926 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 |
ソースコード
import sys sys.setrecursionlimit(5*10**5) input = sys.stdin.readline from collections import defaultdict, deque, Counter from heapq import heappop, heappush from bisect import bisect_left, bisect_right from math import gcd print(*[pow(3, i) for i in range(9)])