結果

問題 No.1765 While Shining
ユーザー アナスタシアアナスタシア
提出日時 2021-12-06 12:44:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 213 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 19,832 KB
最終ジャッジ日時 2024-07-07 08:54:39
合計ジャッジ時間 8,041 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
15,744 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 25 ms
10,368 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 28 ms
10,368 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 26 ms
10,368 KB
testcase_08 AC 26 ms
10,496 KB
testcase_09 AC 153 ms
12,956 KB
testcase_10 AC 218 ms
13,696 KB
testcase_11 AC 195 ms
13,228 KB
testcase_12 AC 214 ms
13,624 KB
testcase_13 AC 193 ms
13,752 KB
testcase_14 AC 232 ms
14,584 KB
testcase_15 AC 234 ms
14,524 KB
testcase_16 AC 227 ms
14,460 KB
testcase_17 AC 231 ms
14,584 KB
testcase_18 AC 231 ms
14,456 KB
testcase_19 AC 238 ms
14,588 KB
testcase_20 AC 234 ms
14,588 KB
testcase_21 AC 228 ms
14,588 KB
testcase_22 AC 257 ms
14,460 KB
testcase_23 AC 248 ms
14,456 KB
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
As = list(map(int, input().split()))

total = 0
for i in range(N-1):
    for j in range(i,N-1):
        if (i+j+1) % 2 == As[j]:
            total += 1
        else:
            break
print(total)
0