結果

問題 No.909 たぴの配置
ユーザー yuruhiyayuruhiya
提出日時 2019-10-20 07:27:39
言語 Ruby
(3.3.0)
結果
AC  
実行時間 956 ms / 3,000 ms
コード長 296 bytes
コンパイル時間 33 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 35,328 KB
最終ジャッジ日時 2024-06-28 18:12:30
合計ジャッジ時間 12,048 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
12,032 KB
testcase_01 AC 75 ms
12,032 KB
testcase_02 AC 77 ms
12,288 KB
testcase_03 AC 74 ms
12,160 KB
testcase_04 AC 73 ms
12,032 KB
testcase_05 AC 782 ms
35,072 KB
testcase_06 AC 956 ms
35,328 KB
testcase_07 AC 832 ms
34,688 KB
testcase_08 AC 800 ms
35,072 KB
testcase_09 AC 940 ms
35,328 KB
testcase_10 AC 861 ms
34,560 KB
testcase_11 AC 783 ms
34,816 KB
testcase_12 AC 805 ms
35,072 KB
testcase_13 AC 892 ms
35,200 KB
testcase_14 AC 758 ms
34,688 KB
testcase_15 AC 765 ms
34,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
a=gets.split.map &:to_i
b=gets.split.map &:to_i
mi=10000000000;pos=-1
n.times{|i|
    if mi>a[i]+b[i]
        mi=a[i]+b[i]
        pos=i
    end
}
p mi
pl=1000000
p pl
n.times{|i|
    if a[i]<b[i]
        p a[i]+pl
    else
        p a[pos]+b[pos]-b[i]+pl
    end
}
p a[pos]+b[pos]+pl
0