結果

問題 No.9012 二数の足し算
ユーザー きつねうどんきつねうどん
提出日時 2024-03-13 19:26:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 2,381 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 47,852 KB
最終ジャッジ日時 2024-09-29 22:56:40
合計ジャッジ時間 4,399 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,084 KB
testcase_01 AC 109 ms
47,852 KB
testcase_02 AC 109 ms
41,444 KB
testcase_03 AC 98 ms
40,148 KB
testcase_04 AC 98 ms
41,152 KB
testcase_05 AC 106 ms
41,572 KB
testcase_06 AC 106 ms
41,224 KB
testcase_07 AC 109 ms
41,056 KB
testcase_08 AC 111 ms
41,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

        String S = sc.next();
        String[] strings = S.split(",");
        int a = Integer.parseInt(strings[0]);
        int b = Integer.parseInt(strings[1]);
        System.out.printf("a + b = %d", a + b);
    }
}

0