結果

問題 No.57 ミリオンダイス
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-14 20:39:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 196 bytes
コンパイル時間 4,295 ms
コンパイル使用メモリ 72,308 KB
実行使用メモリ 56,116 KB
最終ジャッジ日時 2023-08-24 19:55:57
合計ジャッジ時間 6,015 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
56,116 KB
testcase_01 AC 121 ms
55,864 KB
testcase_02 AC 120 ms
55,488 KB
testcase_03 AC 121 ms
54,396 KB
testcase_04 AC 121 ms
55,544 KB
testcase_05 AC 121 ms
55,636 KB
testcase_06 AC 120 ms
55,844 KB
testcase_07 AC 121 ms
55,968 KB
testcase_08 AC 121 ms
55,808 KB
testcase_09 AC 120 ms
56,080 KB
testcase_10 AC 120 ms
55,816 KB
testcase_11 AC 120 ms
55,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No57 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextInt();
		System.out.println((double)N * 3.5);
	}
}
0