結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー YOSHIYOSHI
提出日時 2021-03-21 22:38:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 59 ms / 1,000 ms
コード長 584 bytes
コンパイル時間 3,438 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 50,612 KB
最終ジャッジ日時 2024-11-22 17:40:59
合計ジャッジ時間 6,117 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,336 KB
testcase_01 AC 57 ms
50,216 KB
testcase_02 AC 55 ms
49,808 KB
testcase_03 AC 55 ms
49,940 KB
testcase_04 AC 55 ms
50,136 KB
testcase_05 AC 55 ms
50,172 KB
testcase_06 AC 55 ms
50,612 KB
testcase_07 AC 54 ms
50,004 KB
testcase_08 AC 55 ms
50,260 KB
testcase_09 AC 55 ms
50,364 KB
testcase_10 AC 54 ms
50,148 KB
testcase_11 AC 54 ms
49,932 KB
testcase_12 AC 54 ms
50,244 KB
testcase_13 AC 55 ms
50,068 KB
testcase_14 AC 56 ms
50,264 KB
testcase_15 AC 55 ms
50,196 KB
testcase_16 AC 54 ms
50,164 KB
testcase_17 AC 56 ms
49,896 KB
testcase_18 AC 54 ms
50,180 KB
testcase_19 AC 54 ms
50,120 KB
testcase_20 AC 54 ms
50,440 KB
testcase_21 AC 55 ms
50,328 KB
testcase_22 AC 54 ms
50,196 KB
testcase_23 AC 54 ms
50,460 KB
testcase_24 AC 54 ms
50,316 KB
testcase_25 AC 54 ms
50,204 KB
testcase_26 AC 55 ms
50,320 KB
testcase_27 AC 59 ms
50,128 KB
testcase_28 AC 55 ms
49,960 KB
testcase_29 AC 55 ms
50,332 KB
testcase_30 AC 54 ms
50,188 KB
testcase_31 AC 56 ms
50,048 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