結果

問題 No.57 ミリオンダイス
ユーザー jimanojimano
提出日時 2018-01-08 15:11:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 440 bytes
コンパイル時間 3,103 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 37,244 KB
最終ジャッジ日時 2024-06-06 01:38:09
合計ジャッジ時間 4,253 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,976 KB
testcase_01 AC 49 ms
37,060 KB
testcase_02 AC 49 ms
37,060 KB
testcase_03 AC 50 ms
37,020 KB
testcase_04 AC 49 ms
36,548 KB
testcase_05 AC 49 ms
36,884 KB
testcase_06 AC 49 ms
36,816 KB
testcase_07 AC 49 ms
37,244 KB
testcase_08 AC 47 ms
36,680 KB
testcase_09 AC 47 ms
36,552 KB
testcase_10 AC 48 ms
37,188 KB
testcase_11 AC 49 ms
36,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0057 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String[] str = br.readLine().split(" ");
			long d = Long.parseLong(str[0]);
			System.out.println(d * 3.5);

		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0