結果

問題 No.1564 Sum of Products of Pairs
ユーザー yuruhiyayuruhiya
提出日時 2021-06-27 09:04:57
言語 Crystal
(1.11.2)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 102 bytes
コンパイル時間 12,502 ms
コンパイル使用メモリ 297,160 KB
実行使用メモリ 24,268 KB
最終ジャッジ日時 2024-06-25 11:00:52
合計ジャッジ時間 15,216 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 30 ms
10,240 KB
testcase_04 AC 5 ms
6,944 KB
testcase_05 AC 38 ms
13,972 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 17 ms
6,944 KB
testcase_08 AC 9 ms
6,944 KB
testcase_09 AC 19 ms
8,064 KB
testcase_10 AC 40 ms
13,824 KB
testcase_11 AC 42 ms
13,968 KB
testcase_12 AC 29 ms
10,256 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 54 ms
17,412 KB
testcase_19 AC 53 ms
17,368 KB
testcase_20 AC 55 ms
17,372 KB
testcase_21 AC 61 ms
24,208 KB
testcase_22 AC 53 ms
17,364 KB
testcase_23 AC 61 ms
24,120 KB
testcase_24 AC 60 ms
24,112 KB
testcase_25 AC 62 ms
24,176 KB
testcase_26 AC 61 ms
24,268 KB
testcase_27 AC 62 ms
24,100 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
a = read_line.split.map(&.to_i64).sort
puts a.each_slice(2).sum { |(i, j)| i * j }
0