結果

問題 No.1765 While Shining
ユーザー tomeruntomerun
提出日時 2021-11-26 22:36:07
言語 Crystal
(1.14.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 10,369 ms
コンパイル使用メモリ 296,116 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-06-29 18:14:59
合計ジャッジ時間 11,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
a = read_line.split.map(&.to_i).reverse
s = 1
ans = 0i64
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