結果

問題 No.1088 A+B Problem
ユーザー luv_catluv_cat
提出日時 2020-08-08 15:28:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 37,068 KB
最終ジャッジ日時 2024-10-01 19:23:51
合計ジャッジ時間 3,455 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,064 KB
testcase_01 AC 56 ms
37,032 KB
testcase_02 AC 55 ms
36,904 KB
testcase_03 AC 55 ms
37,068 KB
testcase_04 AC 52 ms
36,888 KB
testcase_05 AC 51 ms
36,928 KB
testcase_06 AC 54 ms
37,060 KB
testcase_07 AC 53 ms
37,048 KB
testcase_08 AC 54 ms
36,876 KB
testcase_09 AC 54 ms
36,868 KB
testcase_10 AC 53 ms
36,528 KB
testcase_11 AC 54 ms
37,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Main {
    public static void main(String args[]) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line[] = br.readLine().split(" ");
        int b[] = new int[2];
        for(int i=0; 2>i; i++){
            b[i] = Integer.parseInt(line[i]);
        }
        System.out.println(b[0] + b[1]);
    }
}
0