結果
| 問題 | No.2759 Take Pictures, Elements? | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2024-05-09 19:26:28 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 190 bytes | 
| コンパイル時間 | 273 ms | 
| コンパイル使用メモリ | 12,032 KB | 
| 実行使用メモリ | 10,624 KB | 
| 最終ジャッジ日時 | 2025-06-20 13:16:15 | 
| 合計ジャッジ時間 | 1,638 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 3 | 
| other | WA * 21 | 
ソースコード
#Validation Test
N,Q = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
for i in range(N):
    print(A[i])
for j in range(Q):
    print(B[j])
            
            
            
        