結果

問題 No.311 z in FizzBuzzString
ユーザー Mcpu3Mcpu3
提出日時 2018-06-26 00:22:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,500 ms
コード長 194 bytes
コンパイル時間 2,073 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-09-24 22:10:25
合計ジャッジ時間 3,879 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,312 KB
testcase_01 AC 128 ms
54,044 KB
testcase_02 AC 128 ms
54,172 KB
testcase_03 AC 130 ms
54,040 KB
testcase_04 AC 129 ms
54,012 KB
testcase_05 AC 128 ms
54,092 KB
testcase_06 AC 116 ms
52,992 KB
testcase_07 AC 115 ms
53,032 KB
testcase_08 AC 115 ms
52,688 KB
testcase_09 AC 128 ms
53,984 KB
testcase_10 AC 115 ms
52,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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