結果

問題 No.311 z in FizzBuzzString
ユーザー spacenautspacenaut
提出日時 2016-05-22 18:39:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,500 ms
コード長 188 bytes
コンパイル時間 3,487 ms
コンパイル使用メモリ 73,604 KB
実行使用メモリ 54,448 KB
最終ジャッジ日時 2024-09-24 21:41:40
合計ジャッジ時間 4,530 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,968 KB
testcase_01 AC 110 ms
52,824 KB
testcase_02 AC 107 ms
52,676 KB
testcase_03 AC 107 ms
52,812 KB
testcase_04 AC 122 ms
54,136 KB
testcase_05 AC 128 ms
54,312 KB
testcase_06 AC 107 ms
54,448 KB
testcase_07 AC 122 ms
54,236 KB
testcase_08 AC 109 ms
53,180 KB
testcase_09 AC 118 ms
53,696 KB
testcase_10 AC 125 ms
53,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No0311{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		System.out.println((n / 5 + n / 3) * 2);
	}
}
0