結果

問題 No.57 ミリオンダイス
ユーザー jimanojimano
提出日時 2018-01-08 15:13:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 230 bytes
コンパイル時間 3,366 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-06-06 01:38:25
合計ジャッジ時間 5,491 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,196 KB
testcase_01 AC 133 ms
41,084 KB
testcase_02 AC 132 ms
41,588 KB
testcase_03 AC 129 ms
41,540 KB
testcase_04 AC 128 ms
40,964 KB
testcase_05 AC 131 ms
41,256 KB
testcase_06 AC 131 ms
41,400 KB
testcase_07 AC 129 ms
41,440 KB
testcase_08 AC 131 ms
41,260 KB
testcase_09 AC 130 ms
41,172 KB
testcase_10 AC 133 ms
40,892 KB
testcase_11 AC 130 ms
41,368 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