結果
問題 |
No.9001 標準入出力の練習問題(テスト用)
|
ユーザー |
![]() |
提出日時 | 2018-11-25 19:48:20 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 129 ms / 1,000 ms |
コード長 | 310 bytes |
コンパイル時間 | 3,264 ms |
コンパイル使用メモリ | 76,724 KB |
実行使用メモリ | 41,300 KB |
最終ジャッジ日時 | 2024-12-24 20:29:44 |
合計ジャッジ時間 | 4,009 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 2 |
ソースコード
/** * Yukicoder1 */ import java.util.*; public class Yukicoder1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a,b; String s; a = sc.nextInt(); b = sc.nextInt(); s = sc.next(); System.out.print(a + b); System.out.print(" " + s); } }