結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 01:51:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 468 bytes
コンパイル時間 1,780 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-06-28 18:55:19
合計ジャッジ時間 6,348 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,592 KB
testcase_01 AC 110 ms
41,116 KB
testcase_02 AC 124 ms
41,196 KB
testcase_03 AC 118 ms
41,344 KB
testcase_04 AC 117 ms
41,660 KB
testcase_05 AC 112 ms
41,120 KB
testcase_06 AC 115 ms
41,128 KB
testcase_07 AC 111 ms
41,232 KB
testcase_08 AC 108 ms
41,496 KB
testcase_09 AC 111 ms
41,460 KB
testcase_10 AC 112 ms
41,036 KB
testcase_11 AC 110 ms
40,256 KB
testcase_12 AC 107 ms
41,360 KB
testcase_13 AC 122 ms
41,224 KB
testcase_14 AC 107 ms
40,088 KB
testcase_15 AC 115 ms
41,632 KB
testcase_16 AC 126 ms
41,508 KB
testcase_17 AC 113 ms
39,792 KB
testcase_18 AC 121 ms
41,496 KB
testcase_19 AC 114 ms
41,380 KB
testcase_20 AC 111 ms
41,256 KB
testcase_21 AC 115 ms
41,360 KB
testcase_22 AC 116 ms
41,508 KB
testcase_23 AC 102 ms
41,424 KB
testcase_24 AC 112 ms
40,992 KB
testcase_25 AC 101 ms
39,852 KB
testcase_26 AC 116 ms
41,372 KB
testcase_27 AC 111 ms
41,096 KB
testcase_28 AC 111 ms
40,020 KB
testcase_29 AC 113 ms
41,136 KB
testcase_30 AC 108 ms
40,928 KB
testcase_31 AC 110 ms
41,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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