結果
問題 | No.185 和風 |
ユーザー | jimano |
提出日時 | 2018-01-13 19:10:36 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 418 bytes |
コンパイル時間 | 3,322 ms |
コンパイル使用メモリ | 74,560 KB |
実行使用メモリ | 56,816 KB |
最終ジャッジ日時 | 2024-06-06 10:16:51 |
合計ジャッジ時間 | 5,157 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 178 ms
41,840 KB |
testcase_01 | WA | - |
testcase_02 | AC | 136 ms
41,104 KB |
testcase_03 | AC | 137 ms
41,212 KB |
testcase_04 | AC | 135 ms
40,920 KB |
testcase_05 | WA | - |
testcase_06 | AC | 202 ms
43,424 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 ans = 0; for (int i = 0; i < N; i++) { int x = sc.nextInt(); int y = sc.nextInt(); ans = y - x; if (ans != y - x || ans < 0) { ans = -1; break; } } System.out.println(ans); } } }