結果

問題 No.830 日本人の9割は90%
ユーザー Beat7501Beat7501
提出日時 2019-06-07 14:56:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 2,524 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 42,188 KB
最終ジャッジ日時 2024-04-15 11:11:56
合計ジャッジ時間 5,113 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
42,188 KB
testcase_01 AC 159 ms
41,544 KB
testcase_02 AC 161 ms
41,232 KB
testcase_03 AC 159 ms
42,144 KB
testcase_04 AC 161 ms
41,820 KB
testcase_05 AC 157 ms
41,588 KB
testcase_06 AC 162 ms
41,824 KB
testcase_07 AC 159 ms
41,636 KB
testcase_08 AC 155 ms
41,432 KB
testcase_09 AC 155 ms
41,332 KB
testcase_10 AC 154 ms
41,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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