結果
問題 |
No.8040 A + B Problem
|
ユーザー |
![]() |
提出日時 | 2019-04-01 22:01:41 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 314 bytes |
コンパイル時間 | 2,010 ms |
コンパイル使用メモリ | 74,176 KB |
実行使用メモリ | 41,592 KB |
最終ジャッジ日時 | 2024-11-27 02:44:29 |
合計ジャッジ時間 | 5,941 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 20 |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Main main = new Main(); main.solve(); } void solve() { Scanner sc = new Scanner(System.in); int a = Integer.parseInt(sc.next()); int b = Integer.parseInt(sc.next()); sc.close(); System.out.println(a+b); } }