結果

問題 No.178 美しいWhitespace (1)
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-09-20 01:43:30
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 889 ms
コンパイル使用メモリ 114,124 KB
実行使用メモリ 27,276 KB
最終ジャッジ日時 2024-07-18 08:24:57
合計ジャッジ時間 2,268 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
25,228 KB
testcase_01 AC 25 ms
24,972 KB
testcase_02 AC 25 ms
27,144 KB
testcase_03 AC 25 ms
25,224 KB
testcase_04 AC 25 ms
25,100 KB
testcase_05 AC 27 ms
25,360 KB
testcase_06 AC 26 ms
27,136 KB
testcase_07 AC 25 ms
25,232 KB
testcase_08 AC 26 ms
27,268 KB
testcase_09 AC 25 ms
25,132 KB
testcase_10 AC 27 ms
25,364 KB
testcase_11 AC 26 ms
24,976 KB
testcase_12 AC 26 ms
22,964 KB
testcase_13 AC 24 ms
25,136 KB
testcase_14 AC 27 ms
25,260 KB
testcase_15 AC 26 ms
25,352 KB
testcase_16 AC 27 ms
25,360 KB
testcase_17 AC 26 ms
25,228 KB
testcase_18 AC 24 ms
27,276 KB
testcase_19 AC 27 ms
27,144 KB
testcase_20 AC 24 ms
25,092 KB
testcase_21 AC 28 ms
25,092 KB
testcase_22 AC 30 ms
27,268 KB
testcase_23 AC 28 ms
24,880 KB
testcase_24 AC 27 ms
25,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

class No178{
    static void Main(){
        long max=0;
        long count=0;
        var isEvenNum=false;
        var num=Int32.Parse(Console.ReadLine());
        for(int i=0;i<num;++i){
            var line=Console.ReadLine().Split(' ').Select(x=>Int64.Parse(x)).ToArray();
            var l=line[0]+line[1]*4;
            if(i!=0&&((l%2==0)!=isEvenNum)){
                count=-1;
                break;
            }
            else isEvenNum=l%2==0;
            if(l>max){
                count+=(l-max)*i;
                max=l;
            }
            count+=max-l;
        }
        Console.WriteLine(count>0?count/2:count);
    }
}
0