結果

問題 No.830 日本人の9割は90%
ユーザー HiMe2_KHiMe2_K
提出日時 2019-06-18 11:23:09
言語 Java
(openjdk 23)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 2,104 ms
コンパイル使用メモリ 73,980 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-11-30 07:47:20
合計ジャッジ時間 4,328 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,236 KB
testcase_01 AC 136 ms
41,512 KB
testcase_02 AC 133 ms
41,384 KB
testcase_03 AC 135 ms
40,976 KB
testcase_04 AC 134 ms
41,100 KB
testcase_05 AC 136 ms
41,524 KB
testcase_06 AC 131 ms
41,100 KB
testcase_07 AC 137 ms
41,232 KB
testcase_08 AC 133 ms
41,436 KB
testcase_09 AC 135 ms
41,332 KB
testcase_10 AC 131 ms
41,052 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