結果

問題 No.909 たぴの配置
ユーザー pluto77
提出日時 2019-11-03 16:22:41
言語 Python2
(2.7.18)
結果
AC  
実行時間 358 ms / 3,000 ms
コード長 191 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 32,912 KB
最終ジャッジ日時 2024-09-14 23:32:31
合計ジャッジ時間 6,592 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki909

n=int(raw_input())
x=map(int,raw_input().split())
y=map(int,raw_input().split())
res=min([x[i]+y[i] for i in range(n)])
print res
print 0
for i in x:
    print min(i,res)
print res
0