結果

問題 No.57 ミリオンダイス
ユーザー villachvillach
提出日時 2017-11-10 15:25:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 208 bytes
コンパイル時間 5,195 ms
コンパイル使用メモリ 71,388 KB
実行使用メモリ 56,244 KB
最終ジャッジ日時 2023-08-16 02:27:34
合計ジャッジ時間 7,794 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
55,828 KB
testcase_01 AC 119 ms
55,800 KB
testcase_02 AC 123 ms
55,684 KB
testcase_03 AC 124 ms
55,580 KB
testcase_04 AC 123 ms
55,644 KB
testcase_05 AC 123 ms
55,560 KB
testcase_06 AC 123 ms
55,744 KB
testcase_07 AC 123 ms
55,520 KB
testcase_08 AC 123 ms
55,260 KB
testcase_09 AC 124 ms
56,244 KB
testcase_10 AC 124 ms
55,860 KB
testcase_11 AC 124 ms
55,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

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