結果

問題 No.552 十分簡単な星1の問題
ユーザー yamax3232yamax3232
提出日時 2017-08-15 22:25:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 253 bytes
コンパイル時間 1,852 ms
コンパイル使用メモリ 74,596 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-10-13 11:04:13
合計ジャッジ時間 8,768 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
39,764 KB
testcase_01 AC 121 ms
41,120 KB
testcase_02 AC 107 ms
40,984 KB
testcase_03 AC 116 ms
41,004 KB
testcase_04 AC 117 ms
41,112 KB
testcase_05 AC 119 ms
40,708 KB
testcase_06 AC 120 ms
40,908 KB
testcase_07 AC 125 ms
41,028 KB
testcase_08 AC 110 ms
40,180 KB
testcase_09 AC 122 ms
40,808 KB
testcase_10 AC 120 ms
41,412 KB
testcase_11 AC 117 ms
40,916 KB
testcase_12 AC 113 ms
40,988 KB
testcase_13 AC 121 ms
41,256 KB
testcase_14 AC 121 ms
40,916 KB
testcase_15 AC 106 ms
41,104 KB
testcase_16 AC 114 ms
40,400 KB
testcase_17 AC 125 ms
41,036 KB
testcase_18 AC 115 ms
40,868 KB
testcase_19 AC 120 ms
40,908 KB
testcase_20 AC 112 ms
39,764 KB
testcase_21 AC 116 ms
40,352 KB
testcase_22 AC 118 ms
40,936 KB
testcase_23 AC 120 ms
40,956 KB
testcase_24 AC 112 ms
40,748 KB
testcase_25 AC 115 ms
40,004 KB
testcase_26 AC 113 ms
40,756 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 RE -
testcase_30 AC 109 ms
40,896 KB
testcase_31 AC 120 ms
41,296 KB
testcase_32 AC 110 ms
40,984 KB
testcase_33 AC 107 ms
41,220 KB
testcase_34 AC 105 ms
41,300 KB
testcase_35 AC 119 ms
41,168 KB
testcase_36 AC 105 ms
40,148 KB
testcase_37 AC 125 ms
40,880 KB
testcase_38 AC 119 ms
41,068 KB
testcase_39 AC 107 ms
39,932 KB
testcase_40 AC 116 ms
41,400 KB
testcase_41 AC 105 ms
39,932 KB
testcase_42 AC 119 ms
40,760 KB
testcase_43 AC 113 ms
41,340 KB
testcase_44 AC 121 ms
41,400 KB
testcase_45 AC 118 ms
40,484 KB
testcase_46 AC 120 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		Long a=kb.nextLong();
		System.out.println(a*10);
		kb.close();
	}

}
0