結果

問題 No.311 z in FizzBuzzString
ユーザー 37zigen37zigen
提出日時 2016-03-11 02:37:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 1,500 ms
コード長 337 bytes
コンパイル時間 2,014 ms
コンパイル使用メモリ 76,136 KB
実行使用メモリ 54,416 KB
最終ジャッジ日時 2024-09-24 21:36:27
合計ジャッジ時間 4,181 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
54,280 KB
testcase_01 AC 143 ms
54,256 KB
testcase_02 AC 139 ms
54,180 KB
testcase_03 AC 142 ms
54,108 KB
testcase_04 AC 141 ms
54,236 KB
testcase_05 AC 127 ms
52,980 KB
testcase_06 AC 143 ms
54,260 KB
testcase_07 AC 144 ms
54,304 KB
testcase_08 AC 142 ms
54,208 KB
testcase_09 AC 140 ms
54,304 KB
testcase_10 AC 140 ms
54,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Date;
import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		long exec_time=new Date().getTime();
		Scanner sc=new Scanner(System.in);
		long n=sc.nextLong();
		long ans=2*((long)n/3+(long)n/5);
		System.out.println(ans);
		System.err.println(new Date().getTime()-exec_time+"ans");
	}
}
0