結果
問題 | No.178 美しいWhitespace (1) |
ユーザー | mencotton |
提出日時 | 2017-12-30 00:36:48 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 845 bytes |
コンパイル時間 | 856 ms |
コンパイル使用メモリ | 111,136 KB |
実行使用メモリ | 29,584 KB |
最終ジャッジ日時 | 2024-06-01 07:03:01 |
合計ジャッジ時間 | 3,230 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
24,984 KB |
testcase_01 | AC | 29 ms
23,096 KB |
testcase_02 | AC | 31 ms
27,280 KB |
testcase_03 | AC | 31 ms
26,908 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 52 ms
25,160 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 52 ms
27,204 KB |
testcase_12 | AC | 53 ms
25,248 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 51 ms
25,248 KB |
testcase_19 | WA | - |
testcase_20 | AC | 51 ms
25,252 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 57 ms
25,124 KB |
testcase_24 | AC | 57 ms
25,112 KB |
コンパイルメッセージ
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; namespace Test { class Program { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); int[] len = new int[n]; for (int i = 0; i < n; i++) { int[] x = Console.ReadLine().Split().Select(int.Parse).ToArray(); len[i] = x[0] + x[1] * 4; } bool flag = true; int ret = 0; for (int i = 0; i < n; i++) { if ((len.Max() - len[i]) % 2 == 0) { ret += (len.Max() - len[i]) / 2; } else { flag = false; } } Console.WriteLine(flag ? ret : -1); } } }