結果

問題 No.547 未知の言語
ユーザー mondomondo
提出日時 2019-07-31 16:59:26
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 1,001 ms
コンパイル使用メモリ 30,928 KB
実行使用メモリ 31,172 KB
最終ジャッジ日時 2024-07-05 06:51:51
合計ジャッジ時間 2,614 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
30,896 KB
testcase_01 AC 40 ms
30,988 KB
testcase_02 AC 39 ms
30,956 KB
testcase_03 AC 40 ms
30,876 KB
testcase_04 AC 40 ms
31,136 KB
testcase_05 AC 40 ms
30,728 KB
testcase_06 AC 40 ms
31,088 KB
testcase_07 AC 39 ms
30,808 KB
testcase_08 AC 39 ms
30,944 KB
testcase_09 AC 39 ms
31,100 KB
testcase_10 AC 39 ms
31,048 KB
testcase_11 AC 40 ms
31,172 KB
testcase_12 AC 40 ms
31,028 KB
testcase_13 AC 40 ms
30,980 KB
testcase_14 AC 39 ms
30,740 KB
testcase_15 AC 40 ms
30,876 KB
testcase_16 AC 40 ms
30,928 KB
testcase_17 AC 40 ms
30,880 KB
testcase_18 AC 42 ms
30,676 KB
testcase_19 AC 42 ms
30,964 KB
testcase_20 AC 40 ms
31,028 KB
testcase_21 AC 39 ms
31,120 KB
testcase_22 AC 39 ms
31,024 KB
testcase_23 AC 39 ms
31,088 KB
testcase_24 AC 40 ms
31,012 KB
testcase_25 AC 40 ms
30,972 KB
testcase_26 AC 39 ms
30,956 KB
testcase_27 AC 40 ms
31,064 KB
testcase_28 AC 39 ms
30,920 KB
testcase_29 AC 40 ms
30,756 KB
testcase_30 AC 40 ms
30,920 KB
testcase_31 AC 40 ms
31,000 KB
testcase_32 AC 40 ms
31,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$count = trim(fgets(STDIN));
$line1 = explode(" ", trim(fgets(STDIN)));
$line2 = explode(" ", trim(fgets(STDIN)));
$number = 0;
$ans1 = 0;
$ans2 = 0;
foreach ($line1 as $key => $value){
    if ($line1[$key] != $line2[$key]) {
        $number = $key+1;
        $ans1 = $line1[$key];
        $ans2 = $line2[$key];
    }
}
echo $number."\n".$ans1."\n".$ans2;
0