結果
問題 | No.9001 標準入出力の練習問題(テスト用) |
ユーザー | Higashi Hiroyuki |
提出日時 | 2020-06-03 23:31:19 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 146 ms / 1,000 ms |
コード長 | 289 bytes |
コンパイル時間 | 1,911 ms |
コンパイル使用メモリ | 76,348 KB |
実行使用メモリ | 42,388 KB |
最終ジャッジ日時 | 2024-05-04 19:13:43 |
合計ジャッジ時間 | 3,072 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 146 ms
42,208 KB |
testcase_01 | AC | 140 ms
42,388 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num1 = sc.nextInt(); int num2 = sc.nextInt(); int sum = num1 + num2; String s = sc.next(); System.out.print(sum + " " + s); } }