結果
問題 | No.647 明太子 |
ユーザー | sudo_yum |
提出日時 | 2018-05-24 19:24:57 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 780 bytes |
コンパイル時間 | 1,847 ms |
コンパイル使用メモリ | 77,192 KB |
実行使用メモリ | 59,400 KB |
最終ジャッジ日時 | 2024-06-28 17:30:52 |
合計ジャッジ時間 | 7,770 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 118 ms
54,048 KB |
testcase_02 | AC | 109 ms
53,044 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 323 ms
59,000 KB |
testcase_20 | AC | 293 ms
58,992 KB |
testcase_21 | AC | 230 ms
57,796 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
import java.util.*; public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] membA = new int[n]; int[] membB = new int[n]; for (int i=0;i<n ;i++ ) { membA[i] = sc.nextInt(); membB[i] = sc.nextInt(); } int m = sc.nextInt(); int[] result = new int[m]; Arrays.fill(result,0); int[] kin = new int[m]; int[] kara = new int[m]; for (int j=0;j<m ;j++ ) { kin[j] = sc.nextInt(); kara[j] = sc.nextInt(); } for (int i=0;i<n ;i++ ) { for (int j=0;j<m ;j++ ) { if (kin[j]<=membA[i]&&membB[i]<=kara[j]) { result[j] +=1; }else{}; } } Arrays.sort(result); System.out.println(result[0]); } }