結果
問題 |
No.9001 標準入出力の練習問題(テスト用)
|
ユーザー |
![]() |
提出日時 | 2015-08-05 13:16:47 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 101 ms / 1,000 ms |
コード長 | 462 bytes |
コンパイル時間 | 3,726 ms |
コンパイル使用メモリ | 75,600 KB |
実行使用メモリ | 52,928 KB |
最終ジャッジ日時 | 2024-07-18 01:23:30 |
合計ジャッジ時間 | 4,385 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 2 |
ソースコード
import java.io.*; public class no225 { /** * @param args * @throws IOException */ public static void main(String[] args) throws IOException { BufferedReader r = new BufferedReader(new InputStreamReader(System.in)); String[] input = new String[2]; input = r.readLine().split(" "); int A = Integer.parseInt(input[0]); int B = Integer.parseInt(input[1]); String S = ""; S = r.readLine(); System.out.println((A + B) + " " + S); } }