結果

問題 No.830 日本人の9割は90%
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-15 22:26:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 5,359 ms
コンパイル使用メモリ 72,788 KB
実行使用メモリ 55,920 KB
最終ジャッジ日時 2023-08-17 17:45:47
合計ジャッジ時間 7,838 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
55,632 KB
testcase_01 AC 119 ms
55,356 KB
testcase_02 AC 120 ms
55,832 KB
testcase_03 AC 119 ms
55,688 KB
testcase_04 AC 121 ms
55,640 KB
testcase_05 AC 121 ms
55,396 KB
testcase_06 AC 120 ms
55,800 KB
testcase_07 AC 119 ms
55,868 KB
testcase_08 AC 119 ms
55,920 KB
testcase_09 AC 120 ms
55,380 KB
testcase_10 AC 120 ms
55,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// https://yukicoder.me/problems/no/1003
public class JapanesePercentage830 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);

    // String 1つ分を読み込む
    int n = Integer.parseInt(sc.next());
    System.out.println(n * 10);
  }
}
0