結果

問題 No.830 日本人の9割は90%
ユーザー heyanxxheyanxx
提出日時 2019-07-04 11:26:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 3,323 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 53,436 KB
最終ジャッジ日時 2023-10-19 07:33:48
合計ジャッジ時間 4,594 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
52,424 KB
testcase_01 AC 56 ms
52,380 KB
testcase_02 AC 55 ms
53,432 KB
testcase_03 AC 57 ms
53,428 KB
testcase_04 AC 56 ms
53,436 KB
testcase_05 AC 55 ms
52,412 KB
testcase_06 AC 56 ms
52,464 KB
testcase_07 AC 56 ms
53,432 KB
testcase_08 AC 56 ms
53,432 KB
testcase_09 AC 56 ms
53,436 KB
testcase_10 AC 56 ms
51,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test.demo;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class YukicoderN830 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ

	 BufferedReader bf =new BufferedReader(new InputStreamReader(System.in));
	 try {
		String str=bf.readLine();
		int a=Integer.parseInt(str);
		System.out.println(a*10);
	} catch (IOException e) {
		// TODO 自動生成された catch ブロック
		e.printStackTrace();
	}
	 
		
		
		
	}

}
0