結果

問題 No.57 ミリオンダイス
ユーザー jimanojimano
提出日時 2018-01-08 15:13:30
言語 Java
(openjdk 23)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 230 bytes
コンパイル時間 3,560 ms
コンパイル使用メモリ 74,504 KB
実行使用メモリ 41,556 KB
最終ジャッジ日時 2024-12-23 12:16:03
合計ジャッジ時間 5,904 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,264 KB
testcase_01 AC 126 ms
40,840 KB
testcase_02 AC 135 ms
41,204 KB
testcase_03 AC 133 ms
41,268 KB
testcase_04 AC 137 ms
41,176 KB
testcase_05 AC 137 ms
41,460 KB
testcase_06 AC 136 ms
41,524 KB
testcase_07 AC 140 ms
41,556 KB
testcase_08 AC 122 ms
40,308 KB
testcase_09 AC 139 ms
41,148 KB
testcase_10 AC 136 ms
41,164 KB
testcase_11 AC 139 ms
41,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.util.Scanner;

public class No0057 {
	public static void main(String[] args) {
		try (Scanner sc = new Scanner(System.in)) {
			long d = sc.nextLong();
			System.out.println(d * 3.5);
		}
	}
}
0