結果

問題 No.830 日本人の9割は90%
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-15 22:26:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 3,443 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 41,140 KB
最終ジャッジ日時 2024-05-05 00:28:22
合計ジャッジ時間 5,317 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
40,032 KB
testcase_01 AC 102 ms
40,764 KB
testcase_02 AC 104 ms
41,048 KB
testcase_03 AC 102 ms
41,128 KB
testcase_04 AC 102 ms
40,824 KB
testcase_05 AC 104 ms
41,088 KB
testcase_06 AC 95 ms
40,216 KB
testcase_07 AC 102 ms
39,952 KB
testcase_08 AC 107 ms
41,024 KB
testcase_09 AC 101 ms
41,140 KB
testcase_10 AC 102 ms
41,088 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