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