結果
問題 | No.8062 A + B |
ユーザー |
![]() |
提出日時 | 2020-04-01 21:48:28 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 382 bytes |
コンパイル時間 | 1,872 ms |
コンパイル使用メモリ | 74,984 KB |
実行使用メモリ | 50,676 KB |
最終ジャッジ日時 | 2024-06-27 10:23:55 |
合計ジャッジ時間 | 3,047 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 2 WA * 3 RE * 3 |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] sa = br.readLine().split(" "); int a = Integer.parseInt(sa[0]); int b = Integer.parseInt(sa[1]); br.close(); System.out.println(a + b); } }