結果

問題 No.552 十分簡単な星1の問題
ユーザー yamax3232yamax3232
提出日時 2018-03-15 09:43:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 187 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-05-09 05:29:56
合計ジャッジ時間 10,181 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,768 KB
testcase_01 AC 133 ms
41,728 KB
testcase_02 AC 135 ms
41,632 KB
testcase_03 AC 123 ms
40,188 KB
testcase_04 AC 131 ms
41,688 KB
testcase_05 AC 133 ms
41,404 KB
testcase_06 AC 134 ms
41,836 KB
testcase_07 AC 136 ms
41,712 KB
testcase_08 AC 134 ms
41,488 KB
testcase_09 AC 130 ms
40,740 KB
testcase_10 AC 134 ms
41,252 KB
testcase_11 AC 134 ms
41,636 KB
testcase_12 AC 133 ms
41,560 KB
testcase_13 AC 135 ms
41,316 KB
testcase_14 AC 133 ms
41,356 KB
testcase_15 AC 134 ms
41,516 KB
testcase_16 AC 135 ms
41,532 KB
testcase_17 AC 120 ms
40,208 KB
testcase_18 AC 135 ms
41,592 KB
testcase_19 AC 135 ms
41,696 KB
testcase_20 AC 135 ms
41,408 KB
testcase_21 AC 134 ms
41,232 KB
testcase_22 AC 136 ms
41,396 KB
testcase_23 AC 135 ms
41,644 KB
testcase_24 AC 137 ms
41,440 KB
testcase_25 AC 133 ms
41,612 KB
testcase_26 AC 135 ms
41,600 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 RE -
testcase_30 AC 133 ms
42,016 KB
testcase_31 AC 137 ms
41,344 KB
testcase_32 AC 137 ms
41,736 KB
testcase_33 AC 135 ms
41,832 KB
testcase_34 AC 137 ms
41,392 KB
testcase_35 AC 136 ms
41,888 KB
testcase_36 AC 134 ms
41,708 KB
testcase_37 AC 134 ms
41,524 KB
testcase_38 AC 121 ms
40,432 KB
testcase_39 AC 120 ms
40,608 KB
testcase_40 AC 136 ms
41,708 KB
testcase_41 AC 137 ms
41,360 KB
testcase_42 AC 135 ms
41,392 KB
testcase_43 AC 135 ms
41,476 KB
testcase_44 AC 136 ms
41,708 KB
testcase_45 AC 134 ms
41,464 KB
testcase_46 AC 135 ms
41,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

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


	}

}
0