結果

問題 No.311 z in FizzBuzzString
ユーザー shinwisteriashinwisteria
提出日時 2018-03-14 20:16:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,500 ms
コード長 271 bytes
コンパイル時間 3,063 ms
コンパイル使用メモリ 74,628 KB
実行使用メモリ 48,064 KB
最終ジャッジ日時 2024-09-24 22:05:32
合計ジャッジ時間 5,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
48,064 KB
testcase_01 AC 129 ms
48,008 KB
testcase_02 AC 131 ms
48,024 KB
testcase_03 AC 130 ms
47,684 KB
testcase_04 AC 126 ms
41,100 KB
testcase_05 AC 129 ms
41,168 KB
testcase_06 AC 129 ms
41,164 KB
testcase_07 AC 130 ms
41,328 KB
testcase_08 AC 129 ms
41,424 KB
testcase_09 AC 129 ms
41,328 KB
testcase_10 AC 119 ms
40,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con311 {

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

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

	}

}
0