結果

問題 No.57 ミリオンダイス
ユーザー koukonkokoukonko
提出日時 2015-12-07 17:18:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 402 bytes
コンパイル時間 6,629 ms
コンパイル使用メモリ 70,740 KB
実行使用メモリ 49,480 KB
最終ジャッジ日時 2023-08-09 00:46:34
合計ジャッジ時間 3,423 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
49,468 KB
testcase_01 AC 39 ms
49,340 KB
testcase_02 AC 39 ms
49,200 KB
testcase_03 AC 39 ms
49,408 KB
testcase_04 AC 39 ms
49,248 KB
testcase_05 AC 38 ms
49,196 KB
testcase_06 AC 39 ms
49,264 KB
testcase_07 AC 39 ms
49,284 KB
testcase_08 AC 38 ms
49,152 KB
testcase_09 AC 39 ms
49,284 KB
testcase_10 AC 39 ms
49,480 KB
testcase_11 AC 39 ms
49,372 KB
権限があれば一括ダウンロードができます

ソースコード

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