結果

問題 No.57 ミリオンダイス
ユーザー villachvillach
提出日時 2017-11-10 15:25:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 208 bytes
コンパイル時間 3,575 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 41,420 KB
最終ジャッジ日時 2024-11-24 12:01:55
合計ジャッジ時間 5,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,048 KB
testcase_01 AC 135 ms
41,108 KB
testcase_02 AC 135 ms
41,132 KB
testcase_03 AC 136 ms
41,144 KB
testcase_04 AC 135 ms
41,420 KB
testcase_05 AC 134 ms
41,312 KB
testcase_06 AC 120 ms
40,176 KB
testcase_07 AC 135 ms
41,360 KB
testcase_08 AC 136 ms
41,352 KB
testcase_09 AC 133 ms
40,924 KB
testcase_10 AC 132 ms
41,108 KB
testcase_11 AC 138 ms
40,984 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