結果

問題 No.57 ミリオンダイス
ユーザー jimanojimano
提出日時 2018-01-08 15:13:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 230 bytes
コンパイル時間 3,348 ms
コンパイル使用メモリ 71,956 KB
実行使用メモリ 56,348 KB
最終ジャッジ日時 2023-08-25 00:36:20
合計ジャッジ時間 5,473 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
55,780 KB
testcase_01 AC 123 ms
55,920 KB
testcase_02 AC 124 ms
56,036 KB
testcase_03 AC 123 ms
56,348 KB
testcase_04 AC 125 ms
55,840 KB
testcase_05 AC 125 ms
55,720 KB
testcase_06 AC 124 ms
56,140 KB
testcase_07 AC 122 ms
56,012 KB
testcase_08 AC 122 ms
56,124 KB
testcase_09 AC 120 ms
56,004 KB
testcase_10 AC 123 ms
55,784 KB
testcase_11 AC 125 ms
56,104 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