結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー wahr69wahr69
提出日時 2015-08-05 13:16:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 90 ms / 1,000 ms
コード長 462 bytes
コンパイル時間 3,061 ms
コンパイル使用メモリ 71,872 KB
実行使用メモリ 52,640 KB
最終ジャッジ日時 2023-09-25 01:15:24
合計ジャッジ時間 3,794 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
52,640 KB
testcase_01 AC 87 ms
52,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class no225 {
	
	/**
	 * @param args
	 * @throws IOException 
	 */
	public static void main(String[] args) throws IOException {
		BufferedReader r = new BufferedReader(new InputStreamReader(System.in));
		String[] input = new String[2];
		input = r.readLine().split(" ");
		int A = Integer.parseInt(input[0]);
		int B = Integer.parseInt(input[1]);
		String S = "";
		S = r.readLine();
		
		System.out.println((A + B) + " " + S);
	}
	
}
0