結果

問題 No.909 たぴの配置
ユーザー ああいい
提出日時 2021-12-29 17:00:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 195 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 39,840 KB
最終ジャッジ日時 2024-10-04 02:46:24
合計ジャッジ時間 8,479 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 3 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int,input().split()))
Y = list(map(int,input().split()))
l = [X[i] + Y[i] for i in range(N)]
M = min(l)
print(M)
print(0)
for i in range(N):
    print(X[i])
print(M)
0