結果

問題 No.57 ミリオンダイス
ユーザー koukonkokoukonko
提出日時 2015-12-07 17:18:48
言語 Java
(openjdk 23)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 402 bytes
コンパイル時間 1,993 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 50,436 KB
最終ジャッジ日時 2024-11-14 06:01:01
合計ジャッジ時間 3,053 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			int num = Integer.parseInt(buff.readLine());
			System.out.println(3.5 * num);
		} catch (NumberFormatException e) {

		} catch (IOException e) {

		}
	}
}
0