結果

問題 No.552 十分簡単な星1の問題
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-11 21:36:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 190 bytes
コンパイル時間 2,023 ms
コンパイル使用メモリ 73,636 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-04-28 16:15:00
合計ジャッジ時間 9,387 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,104 KB
testcase_01 AC 126 ms
53,876 KB
testcase_02 AC 129 ms
54,056 KB
testcase_03 AC 126 ms
53,948 KB
testcase_04 AC 113 ms
52,948 KB
testcase_05 AC 130 ms
54,048 KB
testcase_06 AC 128 ms
53,996 KB
testcase_07 AC 129 ms
53,912 KB
testcase_08 AC 129 ms
53,840 KB
testcase_09 AC 129 ms
54,488 KB
testcase_10 AC 129 ms
54,012 KB
testcase_11 AC 135 ms
54,004 KB
testcase_12 AC 128 ms
53,904 KB
testcase_13 AC 116 ms
52,756 KB
testcase_14 AC 127 ms
53,924 KB
testcase_15 AC 125 ms
54,036 KB
testcase_16 AC 126 ms
53,700 KB
testcase_17 AC 126 ms
53,888 KB
testcase_18 AC 131 ms
53,740 KB
testcase_19 AC 131 ms
53,928 KB
testcase_20 AC 128 ms
53,760 KB
testcase_21 AC 126 ms
54,156 KB
testcase_22 AC 128 ms
53,912 KB
testcase_23 AC 118 ms
52,872 KB
testcase_24 AC 130 ms
53,828 KB
testcase_25 AC 123 ms
52,692 KB
testcase_26 AC 130 ms
53,864 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 RE -
testcase_30 AC 126 ms
54,092 KB
testcase_31 AC 125 ms
54,372 KB
testcase_32 AC 126 ms
54,068 KB
testcase_33 AC 126 ms
53,904 KB
testcase_34 AC 129 ms
54,256 KB
testcase_35 AC 128 ms
54,156 KB
testcase_36 AC 116 ms
52,560 KB
testcase_37 AC 126 ms
53,860 KB
testcase_38 AC 127 ms
53,988 KB
testcase_39 AC 129 ms
54,056 KB
testcase_40 AC 128 ms
54,120 KB
testcase_41 AC 114 ms
53,736 KB
testcase_42 AC 127 ms
53,804 KB
testcase_43 AC 114 ms
52,696 KB
testcase_44 AC 129 ms
53,844 KB
testcase_45 AC 130 ms
53,716 KB
testcase_46 AC 130 ms
53,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		System.out.println(n * 10);
	}
}
0