結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー yamax3232yamax3232
提出日時 2018-03-14 11:54:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 447 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-06-28 19:00:40
合計ジャッジ時間 7,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,484 KB
testcase_01 AC 131 ms
41,376 KB
testcase_02 AC 128 ms
41,304 KB
testcase_03 AC 130 ms
41,076 KB
testcase_04 AC 130 ms
41,120 KB
testcase_05 AC 129 ms
41,112 KB
testcase_06 AC 135 ms
41,080 KB
testcase_07 AC 132 ms
41,432 KB
testcase_08 AC 129 ms
41,268 KB
testcase_09 AC 134 ms
41,524 KB
testcase_10 AC 129 ms
41,404 KB
testcase_11 AC 132 ms
41,096 KB
testcase_12 AC 134 ms
41,276 KB
testcase_13 AC 133 ms
41,268 KB
testcase_14 AC 133 ms
41,096 KB
testcase_15 AC 132 ms
41,076 KB
testcase_16 AC 130 ms
41,344 KB
testcase_17 AC 134 ms
41,372 KB
testcase_18 AC 120 ms
40,040 KB
testcase_19 AC 136 ms
41,324 KB
testcase_20 AC 134 ms
41,296 KB
testcase_21 AC 128 ms
41,152 KB
testcase_22 AC 131 ms
41,244 KB
testcase_23 AC 132 ms
41,600 KB
testcase_24 AC 133 ms
41,432 KB
testcase_25 AC 133 ms
41,032 KB
testcase_26 AC 133 ms
41,240 KB
testcase_27 AC 120 ms
40,264 KB
testcase_28 AC 130 ms
41,256 KB
testcase_29 AC 134 ms
41,128 KB
testcase_30 AC 129 ms
41,396 KB
testcase_31 AC 128 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		int mozisu=0;
		for(int i=0;i<5;i++){

			int b=kb.nextInt();
			if(b%15==0){
				mozisu+=8;
			}else if((b%3==0&&b%5!=0)||
					b%3!=0&&b%5==0){
				mozisu+=4;
			}else{
				mozisu+=String.valueOf(b).length();
			}
		}
		
			System.out.println(mozisu);


	}

}
0