結果

問題 No.1470 Mex Sum
ユーザー yuruhiyayuruhiya
提出日時 2021-04-09 21:33:59
言語 Crystal
(1.11.2)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 12,970 ms
コンパイル使用メモリ 295,584 KB
実行使用メモリ 16,172 KB
最終ジャッジ日時 2024-06-25 04:26:11
合計ジャッジ時間 15,725 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 5 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 5 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 5 ms
6,944 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 26 ms
14,824 KB
testcase_13 AC 24 ms
13,268 KB
testcase_14 AC 25 ms
12,032 KB
testcase_15 AC 25 ms
14,824 KB
testcase_16 AC 23 ms
12,032 KB
testcase_17 AC 23 ms
11,904 KB
testcase_18 AC 25 ms
11,904 KB
testcase_19 AC 25 ms
12,032 KB
testcase_20 AC 24 ms
12,032 KB
testcase_21 AC 26 ms
13,748 KB
testcase_22 AC 25 ms
14,948 KB
testcase_23 AC 26 ms
14,828 KB
testcase_24 AC 26 ms
14,816 KB
testcase_25 AC 26 ms
14,816 KB
testcase_26 AC 27 ms
13,748 KB
testcase_27 AC 26 ms
14,816 KB
testcase_28 AC 25 ms
14,704 KB
testcase_29 AC 25 ms
13,624 KB
testcase_30 AC 25 ms
13,624 KB
testcase_31 AC 25 ms
13,620 KB
testcase_32 AC 26 ms
14,816 KB
testcase_33 AC 25 ms
13,620 KB
testcase_34 AC 25 ms
14,704 KB
testcase_35 AC 24 ms
14,816 KB
testcase_36 AC 26 ms
14,820 KB
testcase_37 AC 23 ms
14,384 KB
testcase_38 AC 24 ms
14,400 KB
testcase_39 AC 24 ms
15,160 KB
testcase_40 AC 25 ms
16,172 KB
testcase_41 AC 25 ms
14,516 KB
testcase_42 AC 24 ms
14,512 KB
testcase_43 AC 25 ms
13,464 KB
testcase_44 AC 24 ms
13,456 KB
testcase_45 AC 25 ms
13,456 KB
testcase_46 AC 25 ms
15,412 KB
testcase_47 AC 25 ms
15,920 KB
testcase_48 AC 24 ms
15,788 KB
testcase_49 AC 24 ms
14,524 KB
testcase_50 AC 24 ms
15,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lib C
  fun strtoll(s : UInt8*, p : UInt8**, b : Int32) : Int64
end

class String
  def to_i64
    C.strtoll(self, nil, 10)
  end
end

n = read_line.to_i
a = read_line.split.map(&.to_i64)
c1, c2 = {1, 2}.map { |k|
  cnt = [0] * -~n
  n.times { |i| cnt[i + 1] = cnt[i] + (a[i] == k ? 1 : 0) }
  cnt
}
puts (0...n).sum { |i|
  case a[i]
  when 1
    3i64 * c2[i] + 2i64 * (i - c2[i])
  when 2
    3i64 * c1[i] + 1i64 * (i - c1[i])
  else
    2i64 * c1[i] + 1i64 * (i - c1[i])
  end
}
0