結果

問題 No.311 z in FizzBuzzString
ユーザー ki_ki33ki_ki33
提出日時 2015-12-04 10:58:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,500 ms
コード長 795 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 77,560 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-09-24 21:16:35
合計ジャッジ時間 4,189 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,116 KB
testcase_01 AC 132 ms
54,036 KB
testcase_02 AC 133 ms
54,200 KB
testcase_03 AC 134 ms
53,904 KB
testcase_04 AC 131 ms
54,288 KB
testcase_05 AC 130 ms
54,364 KB
testcase_06 AC 128 ms
53,908 KB
testcase_07 AC 129 ms
53,988 KB
testcase_08 AC 116 ms
52,768 KB
testcase_09 AC 128 ms
54,236 KB
testcase_10 AC 128 ms
54,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.awt.Point;
import java.awt.Rectangle;
import java.awt.geom.Rectangle2D;
import java.io.BufferedInputStream;
import java.io.IOException;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.*;
import java.util.Map.Entry;
import java.util.concurrent.ConcurrentSkipListSet;

public class Main {
	static final long C =  1000000007;
	static final int CY = 1000000000;
	//long[] F;

	int map[][];

	public void calc() {
		StringBuilder sb = new StringBuilder();
		BufferedInputStream bs = new BufferedInputStream(System.in);
		Scanner sc = new Scanner(bs);

		long n=sc.nextLong();

		long ans = 0;
		ans += n/5;
		ans += n/3;
		ans *= 2;
		
		System.out.println(ans);

	}






	public static void main(String[] args) {
		Main main = new Main();
		main.calc();

	}
}
0