結果

問題 No.311 z in FizzBuzzString
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-30 23:02:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,500 ms
コード長 476 bytes
コンパイル時間 3,214 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-09-24 21:42:48
合計ジャッジ時間 5,213 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,092 KB
testcase_01 AC 112 ms
52,984 KB
testcase_02 AC 124 ms
53,864 KB
testcase_03 AC 126 ms
54,104 KB
testcase_04 AC 125 ms
54,012 KB
testcase_05 AC 128 ms
54,168 KB
testcase_06 AC 124 ms
53,892 KB
testcase_07 AC 127 ms
54,036 KB
testcase_08 AC 128 ms
54,048 KB
testcase_09 AC 125 ms
54,304 KB
testcase_10 AC 125 ms
54,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise37{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    long num = sc.nextLong();
    long count = num / 15 * 16;
    long countNeeded = num % 15;

    for (long n = 1; n <= countNeeded; n++){
      if (n % 3 == 0 && n % 5 == 0){
        count += 4;
      }else if(n % 3 == 0){
        count += 2;
      }else if(n % 5 == 0){
        count += 2;
      }
    }
    System.out.println(count);
  }
}
0