結果

問題 No.311 z in FizzBuzzString
ユーザー キョウチクキョウチク
提出日時 2022-05-16 11:01:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,500 ms
コード長 283 bytes
コンパイル時間 3,133 ms
コンパイル使用メモリ 74,948 KB
実行使用メモリ 54,820 KB
最終ジャッジ日時 2024-09-24 22:38:27
合計ジャッジ時間 5,122 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,932 KB
testcase_01 AC 128 ms
54,000 KB
testcase_02 AC 126 ms
53,824 KB
testcase_03 AC 125 ms
54,100 KB
testcase_04 AC 125 ms
53,816 KB
testcase_05 AC 111 ms
52,940 KB
testcase_06 AC 123 ms
54,212 KB
testcase_07 AC 112 ms
54,820 KB
testcase_08 AC 124 ms
54,072 KB
testcase_09 AC 128 ms
53,880 KB
testcase_10 AC 128 ms
53,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test10 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String line;
    line=sc.nextLine();
    long n=Long.parseLong(line);
    long nz=0;
    nz+=(n/3+n/5)*2;
    System.out.println(nz);
    sc.close();
  }
}
0