結果

問題 No.311 z in FizzBuzzString
ユーザー GchansanjouGchansanjou
提出日時 2018-02-23 22:34:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 667 bytes
コンパイル時間 3,076 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 50,360 KB
最終ジャッジ日時 2024-09-24 22:03:52
合計ジャッジ時間 3,938 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,192 KB
testcase_01 AC 51 ms
50,100 KB
testcase_02 AC 53 ms
49,864 KB
testcase_03 WA -
testcase_04 AC 52 ms
49,836 KB
testcase_05 WA -
testcase_06 AC 49 ms
49,968 KB
testcase_07 AC 49 ms
50,212 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 51 ms
49,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukiCoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00311 {

	public static void main(String[] args) {
		BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));
		try {
			long length = Long.parseLong(bufferedReader.readLine());
			long ans = 0;
			ans = ans + 2 * length/5;
			ans = ans + 2 * length/3;
			System.out.println(ans);
		} catch (NumberFormatException e) {
			// TODO 自動生成された catch ブロック
			e.printStackTrace();
		} catch (IOException e) {
			// TODO 自動生成された catch ブロック
			e.printStackTrace();
		}
	}

}
0