結果

問題 No.909 たぴの配置
ユーザー aaaaaaaaaa2230
提出日時 2022-05-03 23:16:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 195 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 117,168 KB
最終ジャッジ日時 2024-07-02 21:42:28
合計ジャッジ時間 7,042 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other AC * 2 WA * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = list(map(int,input().split()))
Y = list(map(int,input().split()))
ans = 10**20
for x,y in zip(X,Y):
    ans = min(ans,x+y)

print(ans)
print(0)
print(*X,sep="¥n")
print(ans)
0