結果

問題 No.178 美しいWhitespace (1)
ユーザー papinianuspapinianus
提出日時 2016-07-27 12:55:37
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 31,064 KB
実行使用メモリ 31,296 KB
最終ジャッジ日時 2024-11-06 17:55:18
合計ジャッジ時間 2,253 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
30,988 KB
testcase_01 AC 42 ms
30,752 KB
testcase_02 AC 42 ms
31,088 KB
testcase_03 AC 42 ms
31,000 KB
testcase_04 AC 42 ms
31,020 KB
testcase_05 AC 42 ms
31,164 KB
testcase_06 AC 42 ms
30,916 KB
testcase_07 AC 43 ms
30,884 KB
testcase_08 AC 44 ms
31,172 KB
testcase_09 AC 43 ms
31,200 KB
testcase_10 AC 43 ms
31,028 KB
testcase_11 AC 43 ms
31,036 KB
testcase_12 AC 43 ms
30,952 KB
testcase_13 AC 42 ms
31,132 KB
testcase_14 AC 42 ms
31,044 KB
testcase_15 AC 42 ms
30,928 KB
testcase_16 AC 43 ms
30,748 KB
testcase_17 AC 43 ms
30,696 KB
testcase_18 AC 42 ms
31,196 KB
testcase_19 AC 42 ms
30,952 KB
testcase_20 AC 42 ms
31,296 KB
testcase_21 AC 42 ms
30,888 KB
testcase_22 AC 43 ms
31,156 KB
testcase_23 AC 44 ms
31,036 KB
testcase_24 AC 43 ms
31,276 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$source = [];
for($i=0;$i<$n;$i++) {
    list($space, $tab) =  explode(" ", trim(fgets(STDIN)));
    $source[] = $space+4*$tab;
}
$width = max($source);
$ans = 0;
foreach($source as $line) {
    $rest = $width - $line;
    if($rest % 2) {
        $ans = -1;
        break;
    } else {
        $ans += $rest / 2;
    }
}
echo $ans;
echo PHP_EOL;
0