結果

問題 No.57 ミリオンダイス
ユーザー jimanojimano
提出日時 2018-01-08 15:11:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 440 bytes
コンパイル時間 3,087 ms
コンパイル使用メモリ 71,376 KB
実行使用メモリ 49,392 KB
最終ジャッジ日時 2023-08-25 00:35:56
合計ジャッジ時間 4,499 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
49,344 KB
testcase_01 AC 42 ms
49,312 KB
testcase_02 AC 41 ms
49,128 KB
testcase_03 AC 43 ms
49,296 KB
testcase_04 AC 43 ms
49,228 KB
testcase_05 AC 41 ms
49,304 KB
testcase_06 AC 42 ms
49,268 KB
testcase_07 AC 43 ms
49,328 KB
testcase_08 AC 43 ms
49,392 KB
testcase_09 AC 42 ms
49,196 KB
testcase_10 AC 43 ms
49,360 KB
testcase_11 AC 42 ms
49,320 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