結果

問題 No.547 未知の言語
ユーザー tookunn_1213tookunn_1213
提出日時 2017-08-03 21:44:17
言語 PHP
(8.3.4)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 1,562 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 32,020 KB
実行使用メモリ 32,660 KB
最終ジャッジ日時 2024-06-26 02:27:07
合計ジャッジ時間 2,516 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
32,344 KB
testcase_01 AC 42 ms
32,532 KB
testcase_02 AC 42 ms
32,212 KB
testcase_03 AC 42 ms
32,276 KB
testcase_04 AC 43 ms
32,400 KB
testcase_05 AC 42 ms
32,528 KB
testcase_06 AC 42 ms
32,272 KB
testcase_07 AC 42 ms
32,528 KB
testcase_08 AC 41 ms
32,528 KB
testcase_09 AC 42 ms
32,272 KB
testcase_10 AC 42 ms
32,532 KB
testcase_11 AC 43 ms
32,404 KB
testcase_12 AC 42 ms
32,400 KB
testcase_13 AC 42 ms
32,400 KB
testcase_14 AC 44 ms
32,528 KB
testcase_15 AC 43 ms
32,272 KB
testcase_16 AC 42 ms
32,400 KB
testcase_17 AC 42 ms
32,660 KB
testcase_18 AC 43 ms
32,404 KB
testcase_19 AC 45 ms
32,276 KB
testcase_20 AC 43 ms
32,404 KB
testcase_21 AC 43 ms
32,404 KB
testcase_22 AC 42 ms
32,400 KB
testcase_23 AC 44 ms
32,528 KB
testcase_24 AC 43 ms
32,400 KB
testcase_25 AC 42 ms
32,528 KB
testcase_26 AC 43 ms
32,404 KB
testcase_27 AC 42 ms
32,528 KB
testcase_28 AC 42 ms
32,528 KB
testcase_29 AC 42 ms
32,524 KB
testcase_30 AC 42 ms
32,404 KB
testcase_31 AC 42 ms
32,404 KB
testcase_32 AC 42 ms
32,344 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    class In {
        private $arr = [];
        private $count = 0;
        private $pointer = 0;

        public function next_line() {
            $ret = "";
            if($this->has_next()){
                while($this->has_next()){
                    $ret .= $this->next();
                }
            }else{
                $ret = trim(fgets(STDIN));
            }
            return $ret;
        }

        public function next() {
            if(!$this->has_next()) {
                $str = trim(fgets(STDIN));
                $this->arr = explode(' ',$str);
                $this->count = count($this->arr);
                $this->pointer = 0;
            }
            $result = $this->arr[$this->pointer];
            $this->pointer++;
            return $result;
        }

        public function has_next() {
            return $this->pointer < $this->count;
        }

        public function next_int() {
            return (int)$this->next();
        }

        public function next_double() {
            return (double)$this->next();
        }
    }

    class Out {
        public static function println($str = "") {
            echo $str . PHP_EOL;
        }
    }

    $in = new In();

    $N = $in->next_int();
    for($i = 0;$i < $N;$i++) {
        $S[] = $in->next();
    }

    for($i = 0;$i < $N;$i++) {
        $T[] = $in->next();
    }

    for($i = 0;$i < $N;$i++) {
        if($S[$i] !== $T[$i]) {
            Out::println($i + 1);
            Out::println($S[$i]);
            Out::println($T[$i]);
        }
    }
?>
0