結果

問題 No.57 ミリオンダイス
ユーザー villachvillach
提出日時 2017-11-10 15:25:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 208 bytes
コンパイル時間 2,768 ms
コンパイル使用メモリ 73,592 KB
実行使用メモリ 54,068 KB
最終ジャッジ日時 2024-05-03 12:09:33
合計ジャッジ時間 4,761 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,796 KB
testcase_01 AC 117 ms
53,900 KB
testcase_02 AC 110 ms
53,740 KB
testcase_03 AC 100 ms
52,776 KB
testcase_04 AC 110 ms
53,924 KB
testcase_05 AC 106 ms
52,864 KB
testcase_06 AC 108 ms
54,008 KB
testcase_07 AC 98 ms
52,652 KB
testcase_08 AC 112 ms
53,836 KB
testcase_09 AC 108 ms
54,068 KB
testcase_10 AC 104 ms
52,800 KB
testcase_11 AC 114 ms
53,768 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