結果

問題 No.723 2つの数の和
ユーザー cielciel
提出日時 2018-08-07 00:13:46
言語 Ruby
(3.3.0)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 87 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 26,240 KB
最終ジャッジ日時 2024-09-19 18:18:23
合計ジャッジ時間 4,734 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,288 KB
testcase_01 AC 74 ms
12,288 KB
testcase_02 AC 74 ms
12,032 KB
testcase_03 AC 135 ms
20,864 KB
testcase_04 AC 152 ms
22,656 KB
testcase_05 AC 147 ms
21,888 KB
testcase_06 AC 152 ms
22,400 KB
testcase_07 AC 110 ms
16,256 KB
testcase_08 AC 113 ms
18,304 KB
testcase_09 AC 157 ms
22,912 KB
testcase_10 AC 112 ms
16,256 KB
testcase_11 AC 89 ms
12,800 KB
testcase_12 AC 117 ms
18,816 KB
testcase_13 AC 152 ms
22,656 KB
testcase_14 AC 94 ms
14,720 KB
testcase_15 AC 111 ms
17,920 KB
testcase_16 AC 137 ms
20,096 KB
testcase_17 AC 149 ms
21,888 KB
testcase_18 AC 139 ms
20,736 KB
testcase_19 AC 152 ms
20,864 KB
testcase_20 AC 79 ms
12,288 KB
testcase_21 AC 80 ms
12,160 KB
testcase_22 AC 78 ms
12,160 KB
testcase_23 AC 157 ms
26,240 KB
testcase_24 AC 104 ms
15,360 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n,x,*a=`dd`.split.map &:to_i
h=Hash.new 0
r=0
a.map{|e|h[e]+=1}
a.map{|e|r+=h[x-e]}
p r
0