結果

問題 No.311 z in FizzBuzzString
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-30 22:47:59
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 420 bytes
コンパイル時間 3,465 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-09-24 21:42:31
合計ジャッジ時間 5,608 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,096 KB
testcase_01 AC 130 ms
53,712 KB
testcase_02 AC 124 ms
53,824 KB
testcase_03 AC 111 ms
52,960 KB
testcase_04 AC 126 ms
54,044 KB
testcase_05 AC 125 ms
53,944 KB
testcase_06 AC 125 ms
54,100 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

    Scanner sc = new Scanner(System.in);

    int num = sc.nextInt();
    int count = 0;

    for (int n = 1; n <= num; 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