結果

問題 No.552 十分簡単な星1の問題
ユーザー kohaku_kohaku
提出日時 2017-08-12 20:36:19
言語 Java
(openjdk 23)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 2,393 ms
コンパイル使用メモリ 75,968 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-10-13 06:02:37
合計ジャッジ時間 9,891 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 47
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        if(S.equals("0")){
            System.out.println(S);
        }else{
            System.out.println(S+"0");
        }
    }
}
0