結果
問題 | No.239 にゃんぱすー |
ユーザー |
![]() |
提出日時 | 2020-07-08 03:03:15 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 35 ms / 2,000 ms |
コード長 | 287 bytes |
コンパイル時間 | 300 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-10-02 03:44:00 |
合計ジャッジ時間 | 2,941 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 33 |
ソースコード
N = int(input()) A = [input().split() for _ in range(N)] t = [True] * N for i in range(N): for j in range(N): if i == j: continue if A[i][j] != 'nyanpass': t[j] = False if t.count(True) != 1: print(-1) else: print(t.index(True) + 1)