結果

問題 No.241 出席番号(1)
ユーザー Ruizi_LuigiRuizi_Luigi
提出日時 2015-08-06 11:45:06
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 749 bytes
コンパイル時間 4,119 ms
コンパイル使用メモリ 31,956 KB
実行使用メモリ 31,568 KB
最終ジャッジ日時 2024-11-30 21:31:53
合計ジャッジ時間 6,475 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,000 KB
testcase_01 AC 42 ms
31,452 KB
testcase_02 AC 41 ms
31,264 KB
testcase_03 AC 42 ms
31,256 KB
testcase_04 AC 42 ms
31,452 KB
testcase_05 AC 42 ms
31,380 KB
testcase_06 AC 42 ms
31,132 KB
testcase_07 AC 41 ms
31,428 KB
testcase_08 AC 42 ms
31,488 KB
testcase_09 AC 43 ms
30,984 KB
testcase_10 AC 42 ms
31,424 KB
testcase_11 AC 42 ms
31,276 KB
testcase_12 AC 42 ms
31,528 KB
testcase_13 AC 42 ms
31,268 KB
testcase_14 AC 42 ms
31,140 KB
testcase_15 AC 42 ms
31,412 KB
testcase_16 AC 41 ms
31,384 KB
testcase_17 AC 41 ms
31,036 KB
testcase_18 AC 43 ms
31,132 KB
testcase_19 AC 43 ms
31,280 KB
testcase_20 AC 42 ms
31,472 KB
testcase_21 AC 42 ms
31,568 KB
testcase_22 AC 43 ms
31,184 KB
testcase_23 AC 41 ms
31,444 KB
testcase_24 AC 42 ms
31,176 KB
testcase_25 AC 41 ms
31,040 KB
testcase_26 AC 43 ms
30,976 KB
testcase_27 AC 43 ms
31,544 KB
testcase_28 AC 43 ms
31,084 KB
testcase_29 AC 42 ms
31,152 KB
testcase_30 AC 41 ms
31,016 KB
testcase_31 AC 42 ms
31,112 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));

$i_list = array();
$ok_list = array();
for ($i=0;$i<$n;$i++) {
  $i_list[$i] = trim(fgets(STDIN));
  $ok_list[$i] = $i;
}

// NG部分に関して、入れ替え処理をする
for ($i=0;$i<$n;$i++) {
  if ($i_list[$i] == $ok_list[$i]) {
    // 入れ替えても問題ない情報をピックアップ
    $ok_id = -1;
    for ($j=0;$j<$n;$j++) {
      if ($i === $j || $ok_list[$i] == $i_list[$j]) continue;
      $ok_id = $j;
    }
    if ($ok_id == -1) {
      echo -1 . "\n";
      goto EOF_241;
    } else {
      // replace
      $tmp = $ok_list[$i];
      $ok_list[$i] = $ok_list[$ok_id];
      $ok_list[$ok_id] = $tmp;
    }
  }
}

// OK_LISTの出力
foreach ($ok_list as $ok)
  echo "{$ok}\n";

EOF_241:
?>
0