結果

問題 No.1765 While Shining
ユーザー yudedakoyudedako
提出日時 2022-01-24 23:50:30
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,016 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 13,034 ms
コンパイル使用メモリ 270,636 KB
実行使用メモリ 81,756 KB
最終ジャッジ日時 2024-12-15 03:48:19
合計ジャッジ時間 34,807 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 798 ms
64,572 KB
testcase_01 AC 784 ms
64,436 KB
testcase_02 AC 793 ms
64,696 KB
testcase_03 AC 796 ms
64,528 KB
testcase_04 AC 792 ms
64,800 KB
testcase_05 AC 826 ms
64,776 KB
testcase_06 AC 805 ms
64,664 KB
testcase_07 AC 786 ms
64,696 KB
testcase_08 AC 816 ms
64,756 KB
testcase_09 AC 925 ms
70,532 KB
testcase_10 AC 964 ms
79,668 KB
testcase_11 AC 953 ms
79,416 KB
testcase_12 AC 982 ms
79,584 KB
testcase_13 AC 946 ms
73,560 KB
testcase_14 AC 1,016 ms
81,756 KB
testcase_15 AC 989 ms
81,660 KB
testcase_16 AC 999 ms
81,720 KB
testcase_17 AC 962 ms
81,728 KB
testcase_18 AC 981 ms
81,556 KB
testcase_19 AC 952 ms
81,556 KB
testcase_20 AC 967 ms
81,608 KB
testcase_21 AC 971 ms
81,532 KB
testcase_22 AC 993 ms
81,496 KB
testcase_23 AC 959 ms
81,636 KB
testcase_24 AC 987 ms
81,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.*



@main def main =
  val n = readLine().toInt
  val cell = readLine().split(' ').map(_.toInt)
  var last = n - 1
  var result = 0L
  for i <- n - 2 to 0 by -1 do
    if cell(i) == cell(i + 1) then
      last = i + 1
    if cell(i) == 1 then
      result += last - i
  println(result)
0