結果

問題 No.57 ミリオンダイス
ユーザー FVRChanFVRChan
提出日時 2017-10-02 22:00:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 266 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-11-15 22:42:55
合計ジャッジ時間 3,875 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,236 KB
testcase_01 AC 114 ms
39,792 KB
testcase_02 AC 123 ms
41,260 KB
testcase_03 AC 124 ms
41,160 KB
testcase_04 AC 120 ms
41,296 KB
testcase_05 AC 115 ms
39,956 KB
testcase_06 AC 121 ms
41,392 KB
testcase_07 AC 104 ms
41,524 KB
testcase_08 AC 121 ms
41,460 KB
testcase_09 AC 121 ms
41,504 KB
testcase_10 AC 121 ms
41,092 KB
testcase_11 AC 112 ms
41,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		int n=sc.nextInt();
		if(n%2==0)
			System.out.println((int)(3.5*n));
		else
			System.out.println(3.5*n);
	}
}
0