結果

問題 No.547 未知の言語
ユーザー dyechidyechi
提出日時 2019-04-06 13:48:57
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 31,564 KB
最終ジャッジ日時 2024-06-23 21:09:14
合計ジャッジ時間 2,440 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,164 KB
testcase_01 AC 38 ms
31,376 KB
testcase_02 AC 39 ms
31,256 KB
testcase_03 AC 41 ms
31,044 KB
testcase_04 AC 39 ms
30,980 KB
testcase_05 AC 40 ms
31,564 KB
testcase_06 AC 40 ms
31,052 KB
testcase_07 AC 40 ms
31,336 KB
testcase_08 AC 40 ms
31,532 KB
testcase_09 AC 38 ms
31,496 KB
testcase_10 AC 40 ms
31,140 KB
testcase_11 AC 40 ms
31,332 KB
testcase_12 AC 38 ms
31,224 KB
testcase_13 AC 39 ms
31,428 KB
testcase_14 AC 40 ms
31,136 KB
testcase_15 AC 39 ms
31,536 KB
testcase_16 AC 39 ms
31,072 KB
testcase_17 AC 39 ms
31,392 KB
testcase_18 AC 39 ms
31,504 KB
testcase_19 AC 38 ms
31,540 KB
testcase_20 AC 39 ms
31,132 KB
testcase_21 AC 38 ms
31,308 KB
testcase_22 AC 38 ms
31,180 KB
testcase_23 AC 40 ms
31,224 KB
testcase_24 AC 39 ms
31,060 KB
testcase_25 AC 39 ms
31,308 KB
testcase_26 AC 38 ms
31,112 KB
testcase_27 AC 39 ms
31,432 KB
testcase_28 AC 40 ms
31,392 KB
testcase_29 AC 40 ms
31,152 KB
testcase_30 AC 41 ms
31,480 KB
testcase_31 AC 40 ms
31,560 KB
testcase_32 AC 40 ms
31,220 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
while ($tmp = fgets(STDIN)) {
	$s[] = trim($tmp);
}
foreach ($s as $key => $value) {
	$array[] = explode(" ", $value);
}
$line = array_splice($array, 0, 1);

for ($i=0; $i<$line[0][0]; $i++) {
    if ($array[0][$i] !== $array[1][$i]) {
        echo $i+1..PHP_EOL;
        echo $array[0][$i].PHP_EOL;
        echo $array[1][$i].PHP_EOL;
        break;
    }
}
?>
0