結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー SaYaSaYa
提出日時 2015-11-03 20:54:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 318 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 71,268 KB
実行使用メモリ 56,040 KB
最終ジャッジ日時 2023-10-11 13:29:53
合計ジャッジ時間 2,833 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
56,040 KB
testcase_01 AC 124 ms
55,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int a = scanner.nextInt();
        int b = scanner.nextInt();
        String s = scanner.next();
        System.out.print(String.format("%d %s", (a + b), s));
    }
}
0