結果

問題 No.239 にゃんぱすー
ユーザー mondomondo
提出日時 2019-08-13 11:43:18
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 448 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 31,168 KB
実行使用メモリ 31,500 KB
最終ジャッジ日時 2024-09-19 13:20:45
合計ジャッジ時間 2,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
31,156 KB
testcase_01 AC 37 ms
31,060 KB
testcase_02 AC 37 ms
31,072 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
31,000 KB
testcase_07 AC 36 ms
30,984 KB
testcase_08 AC 39 ms
30,992 KB
testcase_09 WA -
testcase_10 AC 38 ms
31,076 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 37 ms
30,816 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 39 ms
31,116 KB
testcase_21 WA -
testcase_22 AC 37 ms
31,372 KB
testcase_23 AC 38 ms
31,320 KB
testcase_24 AC 38 ms
31,056 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 39 ms
31,032 KB
testcase_28 AC 39 ms
30,788 KB
testcase_29 WA -
testcase_30 AC 39 ms
30,988 KB
testcase_31 AC 39 ms
31,204 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 40 ms
30,992 KB
testcase_35 WA -
testcase_36 AC 40 ms
31,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$member = trim(fgets(STDIN));
for ($i = 0; $i < $member; $i++) {
     $greeting[] = explode(" ", trim(fgets(STDIN)));
}
$cnt = 0;
$rencyon = 0;
$t = 0;
for ($j = 0; $j < $member; $j++) {
     for ($k = 0; $k < $member; $k++) {
          if ($greeting[$k][$j] == "nyanpass") {
              $t++;
          }
     }
  if($t == $member - 1) {
    $cnt++;
    $renchon = $j + 1;
  }
}
$ans = -1;
if($cnt == 1) {
    $ans = $renchon;
}
echo $ans;
0