結果
問題 |
No.239 にゃんぱすー
|
ユーザー |
![]() |
提出日時 | 2018-07-10 09:54:18 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 793 bytes |
コンパイル時間 | 799 ms |
コンパイル使用メモリ | 107,608 KB |
実行使用メモリ | 28,056 KB |
最終ジャッジ日時 | 2024-07-19 08:14:07 |
合計ジャッジ時間 | 2,516 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 RE * 1 |
other | AC * 11 WA * 17 RE * 5 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; using System.Collections.Generic; class No239{ static void Main(){ var n=Int32.Parse(Console.ReadLine()); var list=new List<int>(); for(int i=0;i<n;++i){ var b=Console.ReadLine().Split(' '); for(int j=0;j<n;++j){ if(b[j]=="nyanpass"){ list.Add((i+1)*1000+j+1); } } } var a=0; if(list!=null){ a=list[0]/1000; for(int k=1;k<list.Count;++k){ if(a==(list[k]/1000))continue; else if(a!=(list[k]%1000)){ a=-1; break; } } }else{ a=-1; } Console.WriteLine(a); } }