結果

問題 No.830 日本人の9割は90%
ユーザー heyanxxheyanxx
提出日時 2019-07-04 11:26:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 2,832 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 37,084 KB
最終ジャッジ日時 2024-09-19 03:54:03
合計ジャッジ時間 3,968 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,948 KB
testcase_01 AC 50 ms
36,680 KB
testcase_02 AC 51 ms
36,888 KB
testcase_03 AC 51 ms
36,976 KB
testcase_04 AC 49 ms
36,760 KB
testcase_05 AC 50 ms
36,516 KB
testcase_06 AC 49 ms
37,084 KB
testcase_07 AC 49 ms
36,808 KB
testcase_08 AC 47 ms
36,556 KB
testcase_09 AC 50 ms
36,852 KB
testcase_10 AC 51 ms
36,640 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