結果
問題 | No.9001 標準入出力の練習問題(テスト用) |
ユーザー | ML8xnYizwPAcWLQ |
提出日時 | 2018-11-25 19:56:01 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 314 bytes |
コンパイル時間 | 3,510 ms |
コンパイル使用メモリ | 76,820 KB |
実行使用メモリ | 41,448 KB |
最終ジャッジ日時 | 2024-06-07 01:14:37 |
合計ジャッジ時間 | 4,365 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ソースコード
/** * 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.nextLine(); System.out.print(a + b); System.out.print(" " + s); } }