結果

問題 No.723 2つの数の和
ユーザー letrangerjpletrangerjp
提出日時 2018-08-03 23:14:19
言語 Ruby
(3.3.0)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 92 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 28,780 KB
最終ジャッジ日時 2024-09-19 17:39:39
合計ジャッジ時間 4,857 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,160 KB
testcase_01 AC 77 ms
12,032 KB
testcase_02 AC 75 ms
12,160 KB
testcase_03 AC 159 ms
24,704 KB
testcase_04 AC 191 ms
27,100 KB
testcase_05 AC 179 ms
25,856 KB
testcase_06 AC 180 ms
26,240 KB
testcase_07 AC 121 ms
19,072 KB
testcase_08 AC 131 ms
20,104 KB
testcase_09 AC 189 ms
27,500 KB
testcase_10 AC 120 ms
18,688 KB
testcase_11 AC 86 ms
13,696 KB
testcase_12 AC 139 ms
21,632 KB
testcase_13 AC 189 ms
28,116 KB
testcase_14 AC 104 ms
16,716 KB
testcase_15 AC 122 ms
19,528 KB
testcase_16 AC 152 ms
23,424 KB
testcase_17 AC 179 ms
25,600 KB
testcase_18 AC 149 ms
27,380 KB
testcase_19 AC 163 ms
28,780 KB
testcase_20 AC 80 ms
12,160 KB
testcase_21 AC 82 ms
12,160 KB
testcase_22 AC 76 ms
12,032 KB
testcase_23 AC 200 ms
28,272 KB
testcase_24 AC 114 ms
17,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

eval"N,X,*A="+gets(p).split*?,
h=A.group_by{|x|x}
p h.map{|k,v|v.size*(h[X-k]||[]).size}.sum
0