結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー GrenacheGrenache
提出日時 2018-02-12 12:17:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 737 bytes
コンパイル時間 3,031 ms
コンパイル使用メモリ 75,348 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-06-28 18:57:09
合計ジャッジ時間 7,549 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,072 KB
testcase_01 AC 119 ms
41,380 KB
testcase_02 AC 104 ms
40,204 KB
testcase_03 AC 103 ms
40,232 KB
testcase_04 AC 105 ms
40,192 KB
testcase_05 AC 104 ms
40,104 KB
testcase_06 AC 112 ms
40,992 KB
testcase_07 AC 116 ms
40,892 KB
testcase_08 AC 107 ms
40,124 KB
testcase_09 AC 116 ms
40,960 KB
testcase_10 AC 104 ms
40,104 KB
testcase_11 AC 114 ms
41,056 KB
testcase_12 AC 106 ms
40,232 KB
testcase_13 AC 102 ms
40,200 KB
testcase_14 AC 118 ms
41,480 KB
testcase_15 AC 115 ms
40,012 KB
testcase_16 AC 115 ms
40,308 KB
testcase_17 AC 109 ms
41,040 KB
testcase_18 AC 124 ms
41,272 KB
testcase_19 AC 105 ms
40,400 KB
testcase_20 AC 116 ms
40,284 KB
testcase_21 AC 118 ms
41,188 KB
testcase_22 AC 101 ms
40,208 KB
testcase_23 AC 107 ms
40,264 KB
testcase_24 AC 116 ms
41,116 KB
testcase_25 AC 117 ms
41,236 KB
testcase_26 AC 106 ms
39,972 KB
testcase_27 AC 117 ms
40,908 KB
testcase_28 AC 117 ms
41,068 KB
testcase_29 AC 119 ms
41,564 KB
testcase_30 AC 128 ms
41,260 KB
testcase_31 AC 116 ms
41,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder637 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int ans = 0;
		for (int i = 0; i < 5; i++) {
			int a = sc.nextInt();

			if (a % 3 == 0 && a % 5 == 0) {
				ans += 8;
			} else if (a % 3 == 0 || a % 5 == 0) {
				ans += 4;
			} else {
				ans += Integer.toString(a).length();
			}
		}

		pr.println(ans);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0