結果
| 問題 |
No.9001 標準入出力の練習問題(テスト用)
|
| ユーザー |
jonki324
|
| 提出日時 | 2018-06-03 00:43:38 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 159 ms / 1,000 ms |
| コード長 | 301 bytes |
| コンパイル時間 | 2,258 ms |
| コンパイル使用メモリ | 76,780 KB |
| 実行使用メモリ | 42,684 KB |
| 最終ジャッジ日時 | 2024-06-30 09:10:33 |
| 合計ジャッジ時間 | 3,009 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 |
ソースコード
import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
int b = scan.nextInt();
String s = scan.next();
System.out.println(a + b +" " + s);
scan.close();
}
}
jonki324