結果
| 問題 | No.185 和風 |
| コンテスト | |
| ユーザー |
samplelpmas
|
| 提出日時 | 2016-11-17 04:18:29 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
AC
|
| 実行時間 | 112 ms / 1,000 ms |
| コード長 | 658 bytes |
| 記録 | |
| コンパイル時間 | 1,595 ms |
| コンパイル使用メモリ | 81,964 KB |
| 実行使用メモリ | 46,520 KB |
| 最終ジャッジ日時 | 2026-05-20 14:43:38 |
| 合計ジャッジ時間 | 3,593 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 7 |
ソースコード
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int xFirst = sc.nextInt();
int yFirst = sc.nextInt();
int answer = yFirst - xFirst;
if (answer <= 0) {
System.out.println(-1);
return;
}
for (int i = 0; i < n - 1; i++) {
int x = sc.nextInt();
int y = sc.nextInt();
if (answer != y - x) {
System.out.println(-1);
return;
}
}
System.out.println(answer);
}
}
samplelpmas