結果

問題 No.830 日本人の9割は90%
ユーザー planetWorldYplanetWorldY
提出日時 2020-03-01 17:59:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 2,395 ms
コンパイル使用メモリ 73,356 KB
実行使用メモリ 41,216 KB
最終ジャッジ日時 2024-10-13 20:45:20
合計ジャッジ時間 4,309 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,216 KB
testcase_01 AC 115 ms
40,812 KB
testcase_02 AC 108 ms
40,220 KB
testcase_03 AC 101 ms
40,308 KB
testcase_04 AC 107 ms
40,144 KB
testcase_05 AC 115 ms
41,080 KB
testcase_06 AC 112 ms
41,008 KB
testcase_07 AC 103 ms
39,908 KB
testcase_08 AC 102 ms
40,220 KB
testcase_09 AC 114 ms
41,004 KB
testcase_10 AC 107 ms
39,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int number = sc.nextInt();
        
        System.out.println(number * 10);
    }
}
0