結果

問題 No.830 日本人の9割は90%
ユーザー HiMe2_KHiMe2_K
提出日時 2019-06-18 11:23:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 1,978 ms
コンパイル使用メモリ 70,204 KB
実行使用メモリ 44,908 KB
最終ジャッジ日時 2023-08-20 07:00:35
合計ジャッジ時間 4,164 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
44,876 KB
testcase_01 AC 128 ms
44,364 KB
testcase_02 AC 126 ms
44,908 KB
testcase_03 AC 125 ms
44,620 KB
testcase_04 AC 128 ms
43,716 KB
testcase_05 AC 126 ms
44,488 KB
testcase_06 AC 127 ms
44,584 KB
testcase_07 AC 126 ms
44,596 KB
testcase_08 AC 126 ms
44,508 KB
testcase_09 AC 126 ms
44,680 KB
testcase_10 AC 125 ms
44,028 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