結果

問題 No.311 z in FizzBuzzString
ユーザー hikari2004hikari2004
提出日時 2016-04-20 10:05:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,500 ms
コード長 260 bytes
コンパイル時間 3,253 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 54,496 KB
最終ジャッジ日時 2024-09-24 21:38:58
合計ジャッジ時間 5,174 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,156 KB
testcase_01 AC 114 ms
53,028 KB
testcase_02 AC 129 ms
53,884 KB
testcase_03 AC 127 ms
53,856 KB
testcase_04 AC 114 ms
52,948 KB
testcase_05 AC 125 ms
54,496 KB
testcase_06 AC 115 ms
52,888 KB
testcase_07 AC 116 ms
53,028 KB
testcase_08 AC 126 ms
54,272 KB
testcase_09 AC 114 ms
52,888 KB
testcase_10 AC 129 ms
53,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No311 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();

		long fizz = n / 3;
		long buzz = n / 5;

		System.out.println(2 * (fizz + buzz));
		sc.close();
	}

}
0