結果

問題 No.311 z in FizzBuzzString
ユーザー fal_rndfal_rnd
提出日時 2016-11-07 17:57:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,500 ms
コード長 185 bytes
コンパイル時間 2,359 ms
コンパイル使用メモリ 73,712 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-09-24 21:51:30
合計ジャッジ時間 4,308 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,104 KB
testcase_01 AC 127 ms
53,860 KB
testcase_02 AC 126 ms
54,048 KB
testcase_03 AC 114 ms
52,840 KB
testcase_04 AC 129 ms
53,760 KB
testcase_05 AC 126 ms
53,856 KB
testcase_06 AC 116 ms
52,736 KB
testcase_07 AC 127 ms
54,308 KB
testcase_08 AC 126 ms
53,992 KB
testcase_09 AC 127 ms
53,968 KB
testcase_10 AC 133 ms
54,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class C{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args){
		long in=s.nextLong();
		System.out.println((in/3+in/5)*2);
	}
}
0