結果
問題 | No.723 2つの数の和 |
ユーザー | DeAKetsu |
提出日時 | 2019-06-03 12:44:21 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 737 bytes |
コンパイル時間 | 2,083 ms |
コンパイル使用メモリ | 74,492 KB |
実行使用メモリ | 69,608 KB |
最終ジャッジ日時 | 2024-09-17 20:24:24 |
合計ジャッジ時間 | 6,245 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
60,944 KB |
testcase_01 | AC | 112 ms
52,984 KB |
testcase_02 | AC | 112 ms
53,044 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
import java.util.*; public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); String nx = sc.nextLine(); String nums = sc.nextLine(); String[] nxArr = nx.split(" "); String[] numsArr = nums.split(" "); int inputCount = Integer.parseInt(nxArr[0]); int sum = Integer.parseInt(nxArr[1]); int[] numArr = new int[inputCount]; for (int i=0;i<inputCount;i++){ numArr[i] = Integer.parseInt(numsArr[i]); } int count = 0; for (int i=0;i<inputCount;i++){ for(int j=0;j<inputCount;j++){ if (sum == numArr[i] + numArr[j]) count++; } } System.out.println(count); } }