結果
| 問題 | No.3191 Operation Puzzle |
| コンテスト | |
| ユーザー |
SourCreamOnion
|
| 提出日時 | 2025-06-27 22:12:03 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 56 ms / 2,000 ms |
| + 543µs | |
| コード長 | 146 bytes |
| 記録 | |
| コンパイル時間 | 236 ms |
| コンパイル使用メモリ | 96,232 KB |
| 実行使用メモリ | 78,800 KB |
| 最終ジャッジ日時 | 2026-07-12 20:30:56 |
| 合計ジャッジ時間 | 4,875 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 45 |
ソースコード
n=int(input())
a=list(map(int, input().split()))
x=int(input())
ans=[[x]*4 for i in range(4)]
print('Yes')
for i in range(4):
print(*ans[i])
SourCreamOnion