結果

問題 No.1765 While Shining
ユーザー tomeruntomerun
提出日時 2021-11-26 22:35:15
言語 Crystal
(1.11.2)
結果
RE  
実行時間 -
コード長 187 bytes
コンパイル時間 12,692 ms
コンパイル使用メモリ 296,344 KB
実行使用メモリ 12,972 KB
最終ジャッジ日時 2024-06-29 18:14:00
合計ジャッジ時間 13,563 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 14 ms
9,600 KB
testcase_10 AC 16 ms
10,736 KB
testcase_11 AC 16 ms
10,752 KB
testcase_12 AC 20 ms
11,320 KB
testcase_13 AC 18 ms
11,928 KB
testcase_14 AC 20 ms
12,732 KB
testcase_15 AC 22 ms
12,728 KB
testcase_16 AC 21 ms
12,564 KB
testcase_17 AC 22 ms
12,732 KB
testcase_18 AC 21 ms
12,716 KB
testcase_19 AC 21 ms
12,716 KB
testcase_20 AC 21 ms
12,720 KB
testcase_21 AC 20 ms
12,564 KB
testcase_22 AC 20 ms
12,560 KB
testcase_23 AC 21 ms
12,720 KB
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
a = read_line.split.map(&.to_i).reverse
s = 1
ans = 0
1.upto(n - 1) do |i|
  if a[i] == a[i - 1]
    s = i
  end
  if a[i] == 1
    ans += i - s + 1
  end
end
puts ans
0