結果

問題 No.830 日本人の9割は90%
ユーザー taichi_hobbiestaichi_hobbies
提出日時 2019-06-01 18:00:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 7,607 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 57,732 KB
最終ジャッジ日時 2023-10-17 22:48:25
合計ジャッジ時間 7,250 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
57,444 KB
testcase_01 AC 128 ms
57,500 KB
testcase_02 AC 129 ms
57,540 KB
testcase_03 AC 129 ms
57,592 KB
testcase_04 AC 130 ms
57,544 KB
testcase_05 AC 129 ms
57,180 KB
testcase_06 AC 129 ms
57,560 KB
testcase_07 AC 130 ms
57,540 KB
testcase_08 AC 129 ms
57,732 KB
testcase_09 AC 129 ms
57,576 KB
testcase_10 AC 128 ms
57,632 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