結果

問題 No.57 ミリオンダイス
ユーザー ちよちゃんちよちゃん
提出日時 2016-06-03 12:38:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 237 bytes
コンパイル時間 3,475 ms
コンパイル使用メモリ 74,264 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-11-14 06:09:53
合計ジャッジ時間 5,714 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,020 KB
testcase_01 AC 134 ms
54,140 KB
testcase_02 AC 136 ms
54,032 KB
testcase_03 AC 136 ms
53,800 KB
testcase_04 AC 133 ms
54,060 KB
testcase_05 AC 134 ms
54,068 KB
testcase_06 AC 132 ms
54,248 KB
testcase_07 AC 134 ms
54,176 KB
testcase_08 AC 134 ms
54,376 KB
testcase_09 AC 136 ms
53,968 KB
testcase_10 AC 133 ms
54,100 KB
testcase_11 AC 133 ms
54,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

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