結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー shinwisteriashinwisteria
提出日時 2018-02-15 22:37:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 510 bytes
コンパイル時間 3,297 ms
コンパイル使用メモリ 74,488 KB
実行使用メモリ 41,340 KB
最終ジャッジ日時 2024-06-28 18:58:00
合計ジャッジ時間 8,459 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,968 KB
testcase_01 AC 131 ms
41,216 KB
testcase_02 AC 129 ms
41,056 KB
testcase_03 AC 129 ms
41,240 KB
testcase_04 AC 123 ms
40,000 KB
testcase_05 AC 132 ms
41,192 KB
testcase_06 AC 134 ms
41,308 KB
testcase_07 AC 134 ms
41,016 KB
testcase_08 AC 131 ms
41,340 KB
testcase_09 AC 133 ms
41,240 KB
testcase_10 AC 129 ms
41,156 KB
testcase_11 AC 131 ms
40,944 KB
testcase_12 AC 126 ms
41,320 KB
testcase_13 AC 129 ms
41,268 KB
testcase_14 AC 130 ms
41,120 KB
testcase_15 AC 129 ms
40,828 KB
testcase_16 AC 129 ms
41,088 KB
testcase_17 AC 128 ms
41,092 KB
testcase_18 AC 115 ms
40,116 KB
testcase_19 AC 128 ms
41,276 KB
testcase_20 AC 131 ms
40,984 KB
testcase_21 AC 129 ms
41,092 KB
testcase_22 AC 130 ms
41,168 KB
testcase_23 AC 130 ms
41,004 KB
testcase_24 AC 128 ms
41,116 KB
testcase_25 AC 128 ms
41,272 KB
testcase_26 AC 130 ms
41,268 KB
testcase_27 AC 119 ms
39,892 KB
testcase_28 AC 117 ms
39,980 KB
testcase_29 AC 129 ms
41,140 KB
testcase_30 AC 128 ms
41,176 KB
testcase_31 AC 128 ms
41,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;

import java.util.Scanner;

public class Fizzbuzz637 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int[] a = new int[5];
		for(int i = 0;i < 5;i++){
			a[i] = s.nextInt();
		}
		s.close();
		int sum = 0;
		for(int k : a){
			if(k % 15 == 0){
				sum += 8;
			}else if((k % 3) * (k % 5) == 0){
				sum += 4;
			}else{
				sum += Integer.toString(k).length();
			}
		}
		System.out.println(sum);
	}

}
0