結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-09 23:00:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 1,000 ms
コード長 418 bytes
コンパイル時間 2,723 ms
コンパイル使用メモリ 77,700 KB
実行使用メモリ 41,764 KB
最終ジャッジ日時 2024-06-28 18:55:37
合計ジャッジ時間 7,120 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,152 KB
testcase_01 AC 111 ms
41,028 KB
testcase_02 AC 115 ms
40,772 KB
testcase_03 AC 115 ms
41,552 KB
testcase_04 AC 115 ms
40,964 KB
testcase_05 AC 113 ms
41,344 KB
testcase_06 AC 120 ms
41,764 KB
testcase_07 AC 113 ms
40,096 KB
testcase_08 AC 103 ms
41,396 KB
testcase_09 AC 115 ms
41,764 KB
testcase_10 AC 117 ms
41,116 KB
testcase_11 AC 105 ms
41,240 KB
testcase_12 AC 113 ms
41,516 KB
testcase_13 AC 109 ms
41,316 KB
testcase_14 AC 108 ms
41,480 KB
testcase_15 AC 105 ms
39,820 KB
testcase_16 AC 113 ms
41,504 KB
testcase_17 AC 114 ms
41,412 KB
testcase_18 AC 112 ms
41,072 KB
testcase_19 AC 112 ms
41,304 KB
testcase_20 AC 113 ms
41,264 KB
testcase_21 AC 103 ms
41,228 KB
testcase_22 AC 101 ms
41,424 KB
testcase_23 AC 102 ms
41,356 KB
testcase_24 AC 107 ms
41,236 KB
testcase_25 AC 96 ms
41,276 KB
testcase_26 AC 106 ms
41,488 KB
testcase_27 AC 115 ms
41,264 KB
testcase_28 AC 109 ms
41,592 KB
testcase_29 AC 111 ms
41,152 KB
testcase_30 AC 102 ms
41,636 KB
testcase_31 AC 113 ms
41,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No637 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a[] = new int[5];
		int sum = 0;
		
		for(int i = 0;i < 5;i++) {
			a[i] = sc.nextInt();
			if(a[i] % 15 == 0) {
				sum += 8;
			}else if(a[i] % 3 == 0 ||a[i] % 5 == 0) {
				sum += 4;
			}else {
				sum += String.valueOf(a[i]).length();
			}
		}
		
		System.out.println(sum);
	}
}
0