結果

問題 No.909 たぴの配置
ユーザー ああいい
提出日時 2021-12-29 16:59:59
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 195 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 39,840 KB
最終ジャッジ日時 2024-10-04 02:45:52
合計ジャッジ時間 9,535 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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 = max(l)
print(M)
print(0)
for i in range(N):
    print(X[i])
print(M)
0