結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー dogwood0424dogwood0424
提出日時 2017-11-25 22:10:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 286 bytes
コンパイル時間 3,897 ms
コンパイル使用メモリ 85,984 KB
実行使用メモリ 42,364 KB
最終ジャッジ日時 2024-05-05 12:40:05
合計ジャッジ時間 4,051 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
42,364 KB
testcase_01 AC 139 ms
41,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Hyoujunsyuturyokku {
	public static void main(String[]args) {
		Scanner scn = new Scanner(System.in);

		int a = scn.nextInt();
		int b = scn.nextInt();
		String s = scn.next();

		int sum;

		sum = a+b;


		System.out.println(sum+" "+s);


	}

}
0