結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー ほっしいーほっしいー
提出日時 2018-02-11 00:59:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 1,000 ms
コード長 522 bytes
コンパイル時間 3,024 ms
コンパイル使用メモリ 75,128 KB
実行使用メモリ 41,380 KB
最終ジャッジ日時 2024-06-28 18:55:57
合計ジャッジ時間 7,342 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,984 KB
testcase_01 AC 102 ms
39,836 KB
testcase_02 AC 116 ms
41,380 KB
testcase_03 AC 98 ms
40,268 KB
testcase_04 AC 107 ms
40,896 KB
testcase_05 AC 119 ms
41,120 KB
testcase_06 AC 115 ms
41,200 KB
testcase_07 AC 108 ms
40,780 KB
testcase_08 AC 112 ms
41,196 KB
testcase_09 AC 108 ms
40,128 KB
testcase_10 AC 114 ms
40,940 KB
testcase_11 AC 98 ms
39,960 KB
testcase_12 AC 104 ms
40,832 KB
testcase_13 AC 98 ms
40,004 KB
testcase_14 AC 97 ms
40,240 KB
testcase_15 AC 106 ms
41,132 KB
testcase_16 AC 108 ms
40,264 KB
testcase_17 AC 106 ms
40,852 KB
testcase_18 AC 113 ms
41,028 KB
testcase_19 AC 113 ms
41,116 KB
testcase_20 AC 109 ms
40,992 KB
testcase_21 AC 94 ms
39,588 KB
testcase_22 AC 99 ms
40,316 KB
testcase_23 AC 97 ms
40,048 KB
testcase_24 AC 111 ms
40,840 KB
testcase_25 AC 97 ms
39,832 KB
testcase_26 AC 107 ms
41,104 KB
testcase_27 AC 118 ms
40,904 KB
testcase_28 AC 92 ms
39,292 KB
testcase_29 AC 108 ms
40,640 KB
testcase_30 AC 93 ms
39,756 KB
testcase_31 AC 109 ms
40,752 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];
		for(int i=0;i<5;i++) 
			a[i]=Integer.parseInt(sc.next());
		System.out.println(getNum(a));

	}
	
	public static int getNum(int[] a) {
		int x=0;
		for(int i=0;i<5;i++) 
			if((a[i]%3==0)&&(a[i]%5==0))
				x=x+8;
			else if(a[i]%3==0) 
				x=x+4;
			else if(a[i]%5==0)
				x=x+4;
			else {
				String b=Integer.toString(a[i]);
				x=x+b.length();
			}
		return x;
		}

}
0