結果
問題 | No.185 和風 |
ユーザー | fujita |
提出日時 | 2023-05-09 17:28:57 |
言語 | C# (.NET 8.0.203) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,409 bytes |
コンパイル時間 | 8,024 ms |
コンパイル使用メモリ | 167,764 KB |
実行使用メモリ | 184,532 KB |
最終ジャッジ日時 | 2024-05-04 15:12:16 |
合計ジャッジ時間 | 9,477 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
29,056 KB |
testcase_01 | AC | 44 ms
29,312 KB |
testcase_02 | AC | 43 ms
28,928 KB |
testcase_03 | AC | 43 ms
28,800 KB |
testcase_04 | AC | 45 ms
28,800 KB |
testcase_05 | RE | - |
testcase_06 | MLE | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (82 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; } } } } }