結果
問題 | No.185 和風 |
ユーザー | ohagi_1182 |
提出日時 | 2017-10-15 17:15:37 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 580 bytes |
コンパイル時間 | 2,120 ms |
コンパイル使用メモリ | 74,168 KB |
実行使用メモリ | 58,952 KB |
最終ジャッジ日時 | 2024-11-17 17:52:41 |
合計ジャッジ時間 | 4,305 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 188 ms
54,048 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 213 ms
56,576 KB |
testcase_04 | AC | 217 ms
56,520 KB |
testcase_05 | AC | 154 ms
54,200 KB |
testcase_06 | AC | 206 ms
57,056 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] x = new int[n]; int[] y = new int[n]; for(int i = 0 ; i < n ; i++) { x[i] =sc.nextInt(); y[i] = sc.nextInt(); } int[] a = new int[n]; for(int i = 0 ; i < n ; i++) { a[i] = y[i] - x[i]; } for(int i = 0 ; i < n ; i++) { for(int j = i + 1 ; j < n ; j++) { if(a[i] == a[j] && a[i] > 0) { System.out.println(a[i]); return; } else { } } } System.out.println(-1); } }