結果

問題 No.311 z in FizzBuzzString
ユーザー omc-testomc-test
提出日時 2016-08-05 14:59:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 1,500 ms
コード長 377 bytes
コンパイル時間 3,025 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 50,332 KB
最終ジャッジ日時 2024-09-24 21:46:47
合計ジャッジ時間 4,192 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,124 KB
testcase_01 AC 52 ms
50,208 KB
testcase_02 AC 53 ms
49,984 KB
testcase_03 AC 53 ms
50,092 KB
testcase_04 AC 53 ms
50,080 KB
testcase_05 AC 53 ms
49,884 KB
testcase_06 AC 53 ms
50,112 KB
testcase_07 AC 53 ms
49,828 KB
testcase_08 AC 53 ms
49,844 KB
testcase_09 AC 54 ms
50,332 KB
testcase_10 AC 53 ms
50,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class No0311 {
	public static void main(String[] args){
		try(BufferedReader br = new BufferedReader(new InputStreamReader(System.in))){
			long n = Long.parseLong(br.readLine());
			System.out.println((n/3 + n/5) * 2);
		}catch(IOException e){
			e.printStackTrace();
		}
	}
}
0