結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,384 KB
testcase_01 AC 114 ms
41,320 KB
testcase_02 AC 116 ms
40,848 KB
testcase_03 AC 105 ms
40,092 KB
testcase_04 AC 113 ms
40,972 KB
testcase_05 AC 104 ms
40,192 KB
testcase_06 AC 112 ms
40,056 KB
testcase_07 AC 112 ms
40,992 KB
testcase_08 AC 101 ms
39,468 KB
testcase_09 AC 115 ms
41,108 KB
testcase_10 AC 113 ms
41,080 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