結果

問題 No.830 日本人の9割は90%
ユーザー HiMe2_KHiMe2_K
提出日時 2019-06-18 11:23:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 1,899 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 54,564 KB
最終ジャッジ日時 2024-05-07 14:20:55
合計ジャッジ時間 3,906 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,852 KB
testcase_01 AC 119 ms
53,876 KB
testcase_02 AC 121 ms
54,088 KB
testcase_03 AC 121 ms
53,860 KB
testcase_04 AC 120 ms
54,564 KB
testcase_05 AC 124 ms
54,120 KB
testcase_06 AC 124 ms
54,144 KB
testcase_07 AC 109 ms
52,720 KB
testcase_08 AC 124 ms
54,304 KB
testcase_09 AC 110 ms
52,940 KB
testcase_10 AC 125 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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