結果

問題 No.830 日本人の9割は90%
ユーザー ks2mks2m
提出日時 2019-05-24 21:20:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 2,041 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-09-17 10:22:35
合計ジャッジ時間 4,073 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,320 KB
testcase_01 AC 127 ms
41,720 KB
testcase_02 AC 127 ms
41,356 KB
testcase_03 AC 117 ms
39,908 KB
testcase_04 AC 128 ms
41,488 KB
testcase_05 AC 127 ms
41,068 KB
testcase_06 AC 129 ms
41,112 KB
testcase_07 AC 130 ms
41,184 KB
testcase_08 AC 127 ms
41,184 KB
testcase_09 AC 129 ms
41,504 KB
testcase_10 AC 116 ms
40,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.List;
import java.util.Scanner;

public class Main {
	static int v = 0;
	static List<List<Integer>> ansList = null;

	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();

		System.out.println(n * 10);
	}
}
0