結果

問題 No.547 未知の言語
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-29 09:06:43
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 2,529 ms
コンパイル使用メモリ 30,692 KB
実行使用メモリ 31,484 KB
最終ジャッジ日時 2024-06-26 02:20:18
合計ジャッジ時間 4,770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,084 KB
testcase_01 AC 38 ms
30,864 KB
testcase_02 AC 39 ms
31,160 KB
testcase_03 AC 40 ms
31,388 KB
testcase_04 AC 40 ms
31,160 KB
testcase_05 AC 38 ms
31,380 KB
testcase_06 AC 40 ms
31,232 KB
testcase_07 AC 38 ms
31,088 KB
testcase_08 AC 40 ms
31,204 KB
testcase_09 AC 39 ms
31,156 KB
testcase_10 AC 39 ms
31,128 KB
testcase_11 AC 40 ms
30,816 KB
testcase_12 AC 40 ms
30,944 KB
testcase_13 AC 38 ms
31,236 KB
testcase_14 AC 40 ms
31,276 KB
testcase_15 AC 39 ms
31,172 KB
testcase_16 AC 39 ms
31,112 KB
testcase_17 AC 39 ms
30,888 KB
testcase_18 AC 40 ms
31,224 KB
testcase_19 AC 40 ms
31,460 KB
testcase_20 AC 40 ms
31,436 KB
testcase_21 AC 39 ms
31,384 KB
testcase_22 AC 41 ms
31,008 KB
testcase_23 AC 41 ms
31,264 KB
testcase_24 AC 40 ms
31,420 KB
testcase_25 AC 39 ms
31,148 KB
testcase_26 AC 40 ms
31,140 KB
testcase_27 AC 39 ms
30,968 KB
testcase_28 AC 39 ms
31,484 KB
testcase_29 AC 40 ms
31,120 KB
testcase_30 AC 38 ms
30,860 KB
testcase_31 AC 39 ms
31,384 KB
testcase_32 AC 38 ms
31,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$N = trim(fgets(STDIN));
$S = explode(" ", trim(fgets(STDIN)));
$T = explode(" ", trim(fgets(STDIN)));
$ans = 0;
for($i = 0; $i < $N; $i++) {
  if($S[$i] != $T[$i]) {
    $ans = $i;
    break;
  }
}
print($ans + 1);
print("\n");
print($S[$ans]);
print("\n");
print($T[$ans]);
print("\n");
?>
0