結果

問題 No.830 日本人の9割は90%
ユーザー taichi_hobbiestaichi_hobbies
提出日時 2019-06-01 18:00:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 3,371 ms
コンパイル使用メモリ 73,728 KB
実行使用メモリ 41,732 KB
最終ジャッジ日時 2024-09-17 19:57:54
合計ジャッジ時間 5,072 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,172 KB
testcase_01 AC 108 ms
41,684 KB
testcase_02 AC 97 ms
40,372 KB
testcase_03 AC 100 ms
41,404 KB
testcase_04 AC 99 ms
40,144 KB
testcase_05 AC 107 ms
41,524 KB
testcase_06 AC 105 ms
41,300 KB
testcase_07 AC 108 ms
41,212 KB
testcase_08 AC 106 ms
41,732 KB
testcase_09 AC 105 ms
41,308 KB
testcase_10 AC 92 ms
41,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Question830 {

	private static Scanner scan;

	public static void main(String[] args) {
		scan = new Scanner(System.in);
		int N = scan.nextInt();
		System.out.println(N*10);
	}
}
0