結果
問題 | No.2300 Substring OR Sum |
ユーザー | kakel-san |
提出日時 | 2023-07-27 08:57:36 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 134 ms / 2,000 ms |
コード長 | 808 bytes |
コンパイル時間 | 905 ms |
コンパイル使用メモリ | 112,048 KB |
実行使用メモリ | 46,348 KB |
最終ジャッジ日時 | 2024-10-04 01:18:53 |
合計ジャッジ時間 | 4,234 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
25,312 KB |
testcase_01 | AC | 29 ms
25,228 KB |
testcase_02 | AC | 29 ms
25,224 KB |
testcase_03 | AC | 60 ms
29,648 KB |
testcase_04 | AC | 55 ms
27,612 KB |
testcase_05 | AC | 61 ms
30,156 KB |
testcase_06 | AC | 48 ms
26,336 KB |
testcase_07 | AC | 129 ms
44,568 KB |
testcase_08 | AC | 71 ms
31,644 KB |
testcase_09 | AC | 64 ms
30,260 KB |
testcase_10 | AC | 111 ms
44,408 KB |
testcase_11 | AC | 121 ms
45,492 KB |
testcase_12 | AC | 129 ms
44,636 KB |
testcase_13 | AC | 134 ms
45,376 KB |
testcase_14 | AC | 100 ms
41,236 KB |
testcase_15 | AC | 74 ms
31,828 KB |
testcase_16 | AC | 112 ms
44,184 KB |
testcase_17 | AC | 128 ms
46,348 KB |
testcase_18 | AC | 29 ms
25,348 KB |
testcase_19 | AC | 28 ms
25,088 KB |
testcase_20 | AC | 28 ms
23,088 KB |
testcase_21 | AC | 29 ms
25,348 KB |
testcase_22 | AC | 29 ms
25,312 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); public static void Main() { Solve(); } static void Solve() { var n = NN; var a = NList; var ans = 0L; for (var b = 0; b < 28; ++b) { var count = 0L; var tmp = 0; for (var i = 0; i < a.Length; ++i) { if ((a[i] & (1 << b)) == 0) ++tmp; else tmp = 0; count += tmp; } ans += (1L << b) * ((long)n * (n + 1) / 2 - count); } WriteLine(ans); } }