結果
問題 | No.185 和風 |
ユーザー | jimano |
提出日時 | 2018-01-13 19:45:24 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 531 bytes |
コンパイル時間 | 2,993 ms |
コンパイル使用メモリ | 74,748 KB |
実行使用メモリ | 41,464 KB |
最終ジャッジ日時 | 2024-06-06 10:17:56 |
合計ジャッジ時間 | 4,373 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 108 ms
40,160 KB |
testcase_02 | AC | 125 ms
41,464 KB |
testcase_03 | AC | 119 ms
40,792 KB |
testcase_04 | AC | 120 ms
41,124 KB |
testcase_05 | AC | 120 ms
41,448 KB |
testcase_06 | WA | - |
ソースコード
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 ans = 0; for (int i = 0; i < N; i++) { if (i == 0) { int x = sc.nextInt(); int y = sc.nextInt(); if (y - x < 1) { ans = -1; } } else { int x = sc.nextInt(); int y = sc.nextInt(); if (y - x != ans) { ans = -1; break; } } } System.out.println(ans); } } }