結果
問題 | No.999 てん vs. ほむ |
ユーザー | 抹茶アイス |
提出日時 | 2023-08-25 13:23:28 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 838 bytes |
コンパイル時間 | 2,335 ms |
コンパイル使用メモリ | 112,852 KB |
実行使用メモリ | 55,816 KB |
最終ジャッジ日時 | 2024-06-06 07:56:42 |
合計ジャッジ時間 | 6,197 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
34,084 KB |
testcase_01 | AC | 24 ms
24,888 KB |
testcase_02 | AC | 24 ms
25,144 KB |
testcase_03 | AC | 23 ms
25,100 KB |
testcase_04 | AC | 23 ms
27,152 KB |
testcase_05 | AC | 29 ms
25,656 KB |
testcase_06 | AC | 23 ms
24,888 KB |
testcase_07 | AC | 26 ms
25,444 KB |
testcase_08 | AC | 92 ms
27,904 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.Numerics; namespace yukicoder { public class Program { public static void Main() { var n = int.Parse(Console.ReadLine()); var a = Console.ReadLine().Split().Select(x => long.Parse(x)).ToList(); long s = 0; for(var i = 0; i <= n; i++) { var j = 0; long t = 0; while (j < 2 * i) { t += a[j] - a[j + 1]; j += 2; } while (j < 2 * n) { t += a[j + 1] - a[j]; j += 2; } s = Math.Max(t, s); } Console.WriteLine(s); } } }