結果
問題 | No.185 和風 |
ユーザー | jimano |
提出日時 | 2018-01-13 19:30:54 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 513 bytes |
コンパイル時間 | 3,053 ms |
コンパイル使用メモリ | 74,588 KB |
実行使用メモリ | 43,524 KB |
最終ジャッジ日時 | 2024-06-06 10:17:47 |
合計ジャッジ時間 | 4,675 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 168 ms
41,724 KB |
testcase_01 | AC | 187 ms
43,524 KB |
testcase_02 | AC | 114 ms
41,108 KB |
testcase_03 | AC | 121 ms
41,312 KB |
testcase_04 | AC | 126 ms
41,304 KB |
testcase_05 | WA | - |
testcase_06 | AC | 187 ms
43,488 KB |
ソースコード
package me.yukicoder.lv1; import java.util.Scanner; public class No0185 { public static void main(String[] args) { try (Scanner sc = new Scanner(System.in)) { int N = sc.nextInt(); int x = sc.nextInt(); int y = sc.nextInt(); int ans = y - x; if (ans < 0) { System.out.println("-1"); } else { for (int i = 0; i < N - 1; i++) { x = sc.nextInt(); y = sc.nextInt(); if (ans != y - x) { ans = -1; break; } } System.out.println(ans); } } } }