結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー GodNegotoGodNegoto
提出日時 2019-11-28 10:18:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 1,000 ms
コード長 728 bytes
コンパイル時間 4,173 ms
コンパイル使用メモリ 77,796 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-11-17 12:30:34
合計ジャッジ時間 10,400 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,312 KB
testcase_01 AC 140 ms
41,388 KB
testcase_02 AC 142 ms
41,172 KB
testcase_03 AC 138 ms
40,856 KB
testcase_04 AC 137 ms
41,104 KB
testcase_05 AC 135 ms
40,808 KB
testcase_06 AC 135 ms
41,076 KB
testcase_07 AC 136 ms
41,144 KB
testcase_08 AC 137 ms
41,240 KB
testcase_09 AC 137 ms
40,940 KB
testcase_10 AC 137 ms
41,424 KB
testcase_11 AC 138 ms
41,284 KB
testcase_12 AC 140 ms
41,496 KB
testcase_13 AC 144 ms
41,196 KB
testcase_14 AC 135 ms
41,180 KB
testcase_15 AC 135 ms
41,184 KB
testcase_16 AC 138 ms
41,052 KB
testcase_17 AC 135 ms
41,468 KB
testcase_18 AC 136 ms
41,020 KB
testcase_19 AC 137 ms
41,412 KB
testcase_20 AC 123 ms
40,132 KB
testcase_21 AC 143 ms
41,548 KB
testcase_22 AC 135 ms
41,332 KB
testcase_23 AC 132 ms
41,388 KB
testcase_24 AC 134 ms
41,176 KB
testcase_25 AC 135 ms
41,388 KB
testcase_26 AC 136 ms
40,944 KB
testcase_27 AC 134 ms
40,940 KB
testcase_28 AC 134 ms
40,928 KB
testcase_29 AC 146 ms
41,072 KB
testcase_30 AC 134 ms
41,336 KB
testcase_31 AC 139 ms
41,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.*;

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a1 = sc.nextInt();
		int a2 = sc.nextInt();
		int a3 = sc.nextInt();
		int a4 = sc.nextInt();
		int a5 = sc.nextInt();
		List<Integer> list = new ArrayList<Integer>();
		list.add(a1);
		list.add(a2);
		list.add(a3);
		list.add(a4);
		list.add(a5);
		int sum = 0;
		for(int i = 0; i < list.size(); i++) {
			if(list.get(i) % 3 == 0 && list.get(i) % 5 == 0) {
				sum += 8;
			}
			else if (list.get(i) % 5 == 0) {
				sum += 4;
			}
			else if (list.get(i) % 3 == 0) {
				sum += 4;
			}
			else {
				sum += list.get(i).toString().length();
			}
		}
		System.out.println(sum);
	}
}
0