結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 14:58:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 494 bytes
コンパイル時間 2,057 ms
コンパイル使用メモリ 75,080 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-09-13 09:59:33
合計ジャッジ時間 7,303 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
52,832 KB
testcase_01 AC 131 ms
54,092 KB
testcase_02 AC 130 ms
54,056 KB
testcase_03 AC 131 ms
53,992 KB
testcase_04 AC 129 ms
54,076 KB
testcase_05 AC 129 ms
54,280 KB
testcase_06 AC 130 ms
54,148 KB
testcase_07 AC 128 ms
54,084 KB
testcase_08 AC 129 ms
54,072 KB
testcase_09 AC 132 ms
54,048 KB
testcase_10 AC 132 ms
53,928 KB
testcase_11 AC 133 ms
54,136 KB
testcase_12 AC 128 ms
53,916 KB
testcase_13 AC 133 ms
54,120 KB
testcase_14 AC 129 ms
53,804 KB
testcase_15 AC 129 ms
54,060 KB
testcase_16 AC 130 ms
54,196 KB
testcase_17 AC 130 ms
54,040 KB
testcase_18 AC 131 ms
53,952 KB
testcase_19 AC 132 ms
53,996 KB
testcase_20 AC 133 ms
54,108 KB
testcase_21 AC 132 ms
54,276 KB
testcase_22 AC 131 ms
54,032 KB
testcase_23 AC 129 ms
53,972 KB
testcase_24 AC 130 ms
54,060 KB
testcase_25 AC 133 ms
53,916 KB
testcase_26 AC 131 ms
54,016 KB
testcase_27 AC 131 ms
54,012 KB
testcase_28 AC 132 ms
53,904 KB
testcase_29 AC 129 ms
54,204 KB
testcase_30 AC 130 ms
54,128 KB
testcase_31 AC 118 ms
52,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int[] ar = new int[5];
		for (int i=0; i<5; i++) ar[i] = sc.nextInt();
		int ans = 0;
		for (int i=0; i<5; i++) {
			if (ar[i]%3==0 && ar[i]%5==0) ans += 8;
			else if (ar[i]%3==0 && ar[i]%5!=0) ans += 4;
			else if (ar[i]%5==0 && ar[i]%3!=0) ans += 4;
			else if (ar[i]%3!=0 && ar[i]%5!=0) ans += String.valueOf(ar[i]).length();
		}
		System.out.println(ans);
		
	}
}
0