結果

問題 No.830 日本人の9割は90%
ユーザー shinwisteriashinwisteria
提出日時 2019-08-30 09:34:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 3,633 ms
コンパイル使用メモリ 74,192 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-11-19 09:40:35
合計ジャッジ時間 5,866 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,508 KB
testcase_01 AC 134 ms
41,164 KB
testcase_02 AC 133 ms
41,388 KB
testcase_03 AC 128 ms
41,200 KB
testcase_04 AC 135 ms
41,520 KB
testcase_05 AC 136 ms
41,184 KB
testcase_06 AC 134 ms
41,416 KB
testcase_07 AC 136 ms
41,244 KB
testcase_08 AC 135 ms
41,612 KB
testcase_09 AC 135 ms
41,336 KB
testcase_10 AC 136 ms
41,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con830 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		s.close();

		System.out.println(N * 10);

	}

}
0