結果
問題 |
No.1088 A+B Problem
|
ユーザー |
|
提出日時 | 2020-08-08 15:28:01 |
言語 | Java (openjdk 23) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 10 |
ソースコード
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]); } }