結果

問題 No.830 日本人の9割は90%
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-15 22:26:57
言語 Java
(openjdk 23)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 5,831 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 41,284 KB
最終ジャッジ日時 2024-11-26 16:12:57
合計ジャッジ時間 6,600 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,168 KB
testcase_01 AC 111 ms
40,916 KB
testcase_02 AC 110 ms
40,860 KB
testcase_03 AC 109 ms
41,284 KB
testcase_04 AC 111 ms
41,236 KB
testcase_05 AC 111 ms
41,196 KB
testcase_06 AC 113 ms
41,220 KB
testcase_07 AC 115 ms
40,888 KB
testcase_08 AC 102 ms
40,688 KB
testcase_09 AC 100 ms
39,936 KB
testcase_10 AC 104 ms
40,236 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