結果

問題 No.268 ラッピング(Easy)
ユーザー mmmpppmmmppp
提出日時 2017-03-02 19:40:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 84 ms / 5,000 ms
コード長 113 bytes
コンパイル時間 62 ms
コンパイル使用メモリ 11,480 KB
実行使用メモリ 15,296 KB
最終ジャッジ日時 2023-09-03 20:52:16
合計ジャッジ時間 2,021 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
15,092 KB
testcase_01 AC 82 ms
15,236 KB
testcase_02 AC 82 ms
15,044 KB
testcase_03 AC 82 ms
15,096 KB
testcase_04 AC 82 ms
15,096 KB
testcase_05 AC 81 ms
15,296 KB
testcase_06 AC 83 ms
15,096 KB
testcase_07 AC 84 ms
15,092 KB
testcase_08 AC 83 ms
15,236 KB
testcase_09 AC 84 ms
15,028 KB
testcase_10 AC 83 ms
15,088 KB
testcase_11 AC 84 ms
15,212 KB
testcase_12 AC 83 ms
15,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a,b,c=gets.split.map &:to_i
t=[a+b,b+c,c+a].sort
r=gets.split.map(&:to_i).sort
p 3.times.map{|i|2*t[~i]*r[i]}.sum
0