結果

問題 No.239 にゃんぱすー
ユーザー ayaaya
提出日時 2019-07-31 16:06:23
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 494 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 31,168 KB
実行使用メモリ 31,504 KB
最終ジャッジ日時 2024-07-05 06:29:19
合計ジャッジ時間 2,487 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
31,160 KB
testcase_01 AC 40 ms
31,216 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 39 ms
31,220 KB
testcase_05 WA -
testcase_06 AC 39 ms
31,012 KB
testcase_07 AC 39 ms
31,440 KB
testcase_08 AC 41 ms
31,476 KB
testcase_09 WA -
testcase_10 AC 38 ms
31,080 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 39 ms
31,076 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 40 ms
30,988 KB
testcase_21 WA -
testcase_22 AC 40 ms
31,060 KB
testcase_23 AC 40 ms
31,372 KB
testcase_24 AC 39 ms
31,372 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 39 ms
31,292 KB
testcase_28 AC 39 ms
31,028 KB
testcase_29 WA -
testcase_30 AC 39 ms
31,404 KB
testcase_31 AC 38 ms
31,316 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 38 ms
31,464 KB
testcase_35 WA -
testcase_36 AC 40 ms
31,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$num=trim(fgets(STDIN));
$inputArray;
$ans=null;
$cnt=0;
for($i=1;$i<=$num;$i++){
  $input=explode(" ",trim(fgets(STDIN)));
  $inputArray[$i-1]=$input;
} 

for($i=0;$i<=$num-1;$i++){
  if($cnt==0&&$cnt!=$num-1){
   $ans=null;
   break; 
  }
   
  for($x=0;$x<=$num-1;$x++){
    if($inputArray[$x][$i]=="nyanpass"){
      $cnt++;
      if($cnt==$num-1){
        $ans=$i+1;
        break;
      }
    }
  }
  if(!(is_null($ans))){
    break;
  }
}
if(is_null($ans)){
  $ans=-1;
}
echo $ans;
0