結果
問題 |
No.9001 標準入出力の練習問題(テスト用)
|
ユーザー |
![]() |
提出日時 | 2015-12-29 01:45:51 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 154 ms / 1,000 ms |
コード長 | 368 bytes |
コンパイル時間 | 2,179 ms |
コンパイル使用メモリ | 77,048 KB |
実行使用メモリ | 42,552 KB |
最終ジャッジ日時 | 2024-09-19 08:15:39 |
合計ジャッジ時間 | 2,824 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 2 |
ソースコード
import java.util.Scanner; class Test { public static void main(String[] args) { Scanner in = new Scanner(System.in); String str1 = in.next(); String str2 = in.next(); String str3 = in.next(); int n1 = Integer.parseInt(str1); int n2 = Integer.parseInt(str2); System.out.println(n1 + n2 + " " + str3); } }