結果

問題 No.311 z in FizzBuzzString
ユーザー tentententen
提出日時 2020-11-04 12:30:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,500 ms
コード長 197 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 77,340 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-09-24 22:34:27
合計ジャッジ時間 3,841 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,108 KB
testcase_01 AC 129 ms
54,076 KB
testcase_02 AC 126 ms
54,164 KB
testcase_03 AC 126 ms
54,172 KB
testcase_04 AC 111 ms
53,004 KB
testcase_05 AC 114 ms
52,972 KB
testcase_06 AC 122 ms
53,688 KB
testcase_07 AC 122 ms
54,108 KB
testcase_08 AC 125 ms
54,036 KB
testcase_09 AC 126 ms
53,780 KB
testcase_10 AC 125 ms
53,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		System.out.println((n / 3 + n / 5) * 2);
	}
}
0