結果

問題 No.353 ヘイトプラス
ユーザー GoyotanGoyotan
提出日時 2016-07-18 17:16:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 391 bytes
コンパイル時間 5,232 ms
コンパイル使用メモリ 74,956 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-07-03 22:16:49
合計ジャッジ時間 5,787 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,136 KB
testcase_01 AC 121 ms
40,996 KB
testcase_02 AC 117 ms
41,048 KB
testcase_03 AC 111 ms
40,292 KB
testcase_04 AC 124 ms
41,612 KB
testcase_05 AC 118 ms
41,200 KB
testcase_06 AC 123 ms
41,528 KB
testcase_07 AC 122 ms
41,384 KB
testcase_08 AC 120 ms
41,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.IntStream;

public class Study04 {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String a = sc.nextLine();
		String [] q = a.split(" ");
		int[] zzz = new int[2];
		zzz[0] = Integer.parseInt(q[0]);
		zzz[1] = Integer.parseInt(q[1]);
		int sum = IntStream.of(zzz).sum();
		System.out.println(sum);
	}

}
0