結果

問題 No.552 十分簡単な星1の問題
ユーザー takeya_okinotakeya_okino
提出日時 2017-08-11 22:20:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 189 bytes
コンパイル時間 2,465 ms
コンパイル使用メモリ 76,000 KB
実行使用メモリ 54,132 KB
最終ジャッジ日時 2024-04-20 22:29:40
合計ジャッジ時間 8,634 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 111 ms
40,968 KB
testcase_02 AC 111 ms
41,100 KB
testcase_03 AC 117 ms
41,504 KB
testcase_04 AC 116 ms
41,372 KB
testcase_05 AC 120 ms
41,464 KB
testcase_06 AC 114 ms
41,312 KB
testcase_07 AC 108 ms
41,168 KB
testcase_08 AC 108 ms
40,384 KB
testcase_09 AC 113 ms
41,320 KB
testcase_10 AC 108 ms
40,000 KB
testcase_11 AC 110 ms
40,304 KB
testcase_12 AC 108 ms
40,144 KB
testcase_13 AC 125 ms
41,320 KB
testcase_14 AC 119 ms
41,416 KB
testcase_15 AC 106 ms
39,992 KB
testcase_16 AC 127 ms
41,024 KB
testcase_17 AC 114 ms
41,096 KB
testcase_18 AC 116 ms
41,180 KB
testcase_19 AC 118 ms
41,788 KB
testcase_20 AC 128 ms
41,628 KB
testcase_21 AC 109 ms
40,060 KB
testcase_22 AC 132 ms
41,816 KB
testcase_23 AC 121 ms
41,452 KB
testcase_24 AC 119 ms
41,796 KB
testcase_25 AC 108 ms
40,128 KB
testcase_26 AC 116 ms
41,152 KB
testcase_27 AC 114 ms
41,140 KB
testcase_28 AC 114 ms
41,224 KB
testcase_29 AC 122 ms
41,520 KB
testcase_30 AC 105 ms
40,188 KB
testcase_31 AC 120 ms
41,172 KB
testcase_32 AC 115 ms
41,024 KB
testcase_33 AC 106 ms
40,068 KB
testcase_34 AC 113 ms
41,216 KB
testcase_35 AC 116 ms
41,368 KB
testcase_36 AC 115 ms
41,192 KB
testcase_37 AC 120 ms
41,500 KB
testcase_38 AC 115 ms
41,144 KB
testcase_39 AC 106 ms
40,076 KB
testcase_40 AC 107 ms
40,028 KB
testcase_41 AC 117 ms
41,384 KB
testcase_42 AC 114 ms
41,228 KB
testcase_43 AC 116 ms
41,316 KB
testcase_44 AC 113 ms
41,324 KB
testcase_45 AC 115 ms
41,336 KB
testcase_46 AC 118 ms
41,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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