結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー htensaihtensai
提出日時 2019-11-14 08:24:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 422 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-09-21 21:20:17
合計ジャッジ時間 7,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,112 KB
testcase_01 AC 122 ms
40,832 KB
testcase_02 AC 124 ms
40,888 KB
testcase_03 AC 124 ms
41,152 KB
testcase_04 AC 120 ms
41,028 KB
testcase_05 AC 119 ms
40,788 KB
testcase_06 AC 122 ms
41,392 KB
testcase_07 AC 116 ms
41,064 KB
testcase_08 AC 111 ms
39,692 KB
testcase_09 AC 116 ms
40,884 KB
testcase_10 AC 115 ms
40,912 KB
testcase_11 AC 113 ms
40,824 KB
testcase_12 AC 104 ms
39,736 KB
testcase_13 AC 109 ms
39,728 KB
testcase_14 AC 105 ms
39,732 KB
testcase_15 AC 118 ms
41,128 KB
testcase_16 AC 100 ms
39,524 KB
testcase_17 AC 117 ms
40,972 KB
testcase_18 AC 111 ms
40,400 KB
testcase_19 AC 104 ms
39,908 KB
testcase_20 AC 119 ms
41,296 KB
testcase_21 AC 113 ms
40,972 KB
testcase_22 AC 106 ms
40,116 KB
testcase_23 AC 114 ms
41,048 KB
testcase_24 AC 116 ms
41,076 KB
testcase_25 AC 109 ms
40,128 KB
testcase_26 AC 117 ms
40,844 KB
testcase_27 AC 116 ms
41,168 KB
testcase_28 AC 102 ms
39,888 KB
testcase_29 AC 118 ms
41,228 KB
testcase_30 AC 103 ms
40,152 KB
testcase_31 AC 117 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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