結果
問題 | No.185 和風 |
ユーザー | fujita |
提出日時 | 2023-05-09 17:30:48 |
言語 | C# (.NET 8.0.203) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,412 bytes |
コンパイル時間 | 7,903 ms |
コンパイル使用メモリ | 164,880 KB |
実行使用メモリ | 194,064 KB |
最終ジャッジ日時 | 2024-05-04 15:13:26 |
合計ジャッジ時間 | 9,215 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
28,928 KB |
testcase_01 | AC | 43 ms
29,184 KB |
testcase_02 | AC | 44 ms
29,184 KB |
testcase_03 | AC | 47 ms
29,304 KB |
testcase_04 | AC | 47 ms
29,312 KB |
testcase_05 | AC | 48 ms
29,040 KB |
testcase_06 | MLE | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (96 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System; namespace yukicoder { class Program { static void Main(string[] args) { int N = int.Parse(Console.ReadLine()); int[] strings1 = new int[N * 2]; //int[] strings2 = new int[str.Length]; for (int i = 0; i <= N * 2 - 1; i++) { var str = Console.ReadLine().Split(" "); int n = 0; strings1[i] = int.Parse(str[n]); strings1[i + 1] = int.Parse(str[n + 1]); i++; } for (int k = strings1.Length -1; k >= 0;) { if (strings1[k] - strings1[k - 1] == strings1[k - 2] - strings1[k - 3]) { k = k - 2; if(k == 1 && strings1[1] - strings1[0] > 0) { Console.WriteLine(strings1[1] - strings1[0]); break; } else if(k <= 1 && strings1[1] - strings1[0] <= 0 ) { Console.WriteLine("-1"); break; } continue; } else { Console.WriteLine("-1"); break; } } } } }