結果
| 問題 | 
                            No.9001 標準入出力の練習問題(テスト用)
                             | 
                    
| ユーザー | 
                             | 
                    
| 提出日時 | 2020-07-02 15:35:49 | 
| 言語 | Java  (openjdk 23)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 402 bytes | 
| コンパイル時間 | 3,362 ms | 
| コンパイル使用メモリ | 74,404 KB | 
| 実行使用メモリ | 41,036 KB | 
| 最終ジャッジ日時 | 2024-09-15 01:02:02 | 
| 合計ジャッジ時間 | 4,106 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 2 | 
ソースコード
import java.io.*;
import java.util.*;
public class IntegerTriangle {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int first = Integer.parseInt(scan.next());
        int second = Integer.parseInt(scan.next());
        String nickname = scan.nextLine();
        
        System.out.println(String.format("%d %s", first+second, nickname));
    }
}