結果
| 問題 |
No.3159 Just Answer 10 Integers!
|
| コンテスト | |
| ユーザー |
timi
|
| 提出日時 | 2025-05-23 20:07:51 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 126 bytes |
| コンパイル時間 | 1,638 ms |
| コンパイル使用メモリ | 82,264 KB |
| 実行使用メモリ | 53,400 KB |
| 最終ジャッジ日時 | 2025-05-23 20:07:54 |
| 合計ジャッジ時間 | 2,122 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 2 WA * 7 |
ソースコード
N=int(input())
if N==3:
ans=[2,3,6]
print(*ans)
else:
ans=[]
for i in range(N):
ans.append(pow(2,i))
print(*ans)
timi