結果
| 問題 | No.8040 A + B Problem |
| コンテスト | |
| ユーザー |
fog_878
|
| 提出日時 | 2019-04-01 22:04:51 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 320 bytes |
| 記録 | |
| コンパイル時間 | 2,098 ms |
| コンパイル使用メモリ | 83,408 KB |
| 実行使用メモリ | 42,712 KB |
| 最終ジャッジ日時 | 2026-05-21 09:27:55 |
| 合計ジャッジ時間 | 4,970 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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);
}
}
fog_878