結果
問題 | No.9001 標準入出力の練習問題(テスト用) |
ユーザー | ayumu |
提出日時 | 2016-05-14 13:23:37 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 555 bytes |
コンパイル時間 | 2,963 ms |
コンパイル使用メモリ | 73,616 KB |
実行使用メモリ | 36,792 KB |
最終ジャッジ日時 | 2024-10-06 02:24:45 |
合計ジャッジ時間 | 3,433 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class SampleInput { public static void main(String[] args) { int a,b; String s; a = Integer.parseInt(input()); b = Integer.parseInt(input()); s = input(); System.out.println(a+b); System.out.println(s); } static String input(){ String s =""; try{ InputStreamReader isr = new InputStreamReader(System.in); BufferedReader br = new BufferedReader(isr); s = br.readLine(); }catch(IOException e){ } return s; } }