結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー YOSHIYOSHI
提出日時 2021-03-21 22:38:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 1,000 ms
コード長 584 bytes
コンパイル時間 2,729 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 37,284 KB
最終ジャッジ日時 2024-05-02 06:12:52
合計ジャッジ時間 5,239 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
37,044 KB
testcase_01 AC 46 ms
36,968 KB
testcase_02 AC 48 ms
37,172 KB
testcase_03 AC 48 ms
36,868 KB
testcase_04 AC 47 ms
37,284 KB
testcase_05 AC 47 ms
37,080 KB
testcase_06 AC 47 ms
37,128 KB
testcase_07 AC 48 ms
37,052 KB
testcase_08 AC 46 ms
37,024 KB
testcase_09 AC 47 ms
36,976 KB
testcase_10 AC 47 ms
36,680 KB
testcase_11 AC 50 ms
36,908 KB
testcase_12 AC 47 ms
37,152 KB
testcase_13 AC 47 ms
36,420 KB
testcase_14 AC 47 ms
36,848 KB
testcase_15 AC 45 ms
37,048 KB
testcase_16 AC 45 ms
37,112 KB
testcase_17 AC 47 ms
36,908 KB
testcase_18 AC 49 ms
37,260 KB
testcase_19 AC 47 ms
36,968 KB
testcase_20 AC 48 ms
36,896 KB
testcase_21 AC 47 ms
37,136 KB
testcase_22 AC 46 ms
37,272 KB
testcase_23 AC 47 ms
37,052 KB
testcase_24 AC 48 ms
36,980 KB
testcase_25 AC 47 ms
36,788 KB
testcase_26 AC 46 ms
36,904 KB
testcase_27 AC 47 ms
36,408 KB
testcase_28 AC 47 ms
36,440 KB
testcase_29 AC 47 ms
36,944 KB
testcase_30 AC 47 ms
37,020 KB
testcase_31 AC 47 ms
36,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000637_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		String[] a = br.readLine().split(" ");
		int c = 0;
		for(int i = 0; i < a.length; i++) {
			int j = Integer.parseInt(a[i]);
			if(j % 3 == 0 && j % 5 == 0) {
				c += 8;
			} else if(!(j % 3 != 0 && j % 5 != 0)) {
				c += 4;
			} else {
				c += String.valueOf(j).length();
			}
		}
		System.out.println(c);
	}
}
0