結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 20:14:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 351 bytes
コンパイル時間 1,969 ms
コンパイル使用メモリ 73,600 KB
実行使用メモリ 41,548 KB
最終ジャッジ日時 2024-06-30 18:05:01
合計ジャッジ時間 6,987 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,976 KB
testcase_01 AC 129 ms
40,852 KB
testcase_02 AC 125 ms
41,144 KB
testcase_03 AC 129 ms
41,060 KB
testcase_04 AC 129 ms
41,288 KB
testcase_05 AC 130 ms
41,180 KB
testcase_06 AC 126 ms
40,928 KB
testcase_07 AC 126 ms
41,420 KB
testcase_08 AC 123 ms
41,048 KB
testcase_09 AC 126 ms
40,996 KB
testcase_10 AC 126 ms
40,860 KB
testcase_11 AC 118 ms
40,652 KB
testcase_12 AC 126 ms
41,116 KB
testcase_13 AC 120 ms
41,032 KB
testcase_14 AC 128 ms
41,188 KB
testcase_15 AC 128 ms
40,980 KB
testcase_16 AC 125 ms
41,060 KB
testcase_17 AC 125 ms
40,828 KB
testcase_18 AC 110 ms
40,092 KB
testcase_19 AC 125 ms
41,256 KB
testcase_20 AC 128 ms
40,812 KB
testcase_21 AC 125 ms
40,856 KB
testcase_22 AC 125 ms
40,860 KB
testcase_23 AC 125 ms
41,504 KB
testcase_24 AC 124 ms
40,872 KB
testcase_25 AC 124 ms
41,236 KB
testcase_26 AC 127 ms
41,432 KB
testcase_27 AC 114 ms
39,752 KB
testcase_28 AC 113 ms
39,708 KB
testcase_29 AC 125 ms
41,000 KB
testcase_30 AC 127 ms
41,548 KB
testcase_31 AC 107 ms
39,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no637{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int a,i,s=0;
		for(i=0;i<5;i++) {
			a=stdIn.nextInt();
			if(a%3==0&&a%5==0) s+=8;
			else if(a%3==0||a%5==0) s+=4;
			else {
				while(a>0) {
					a/=10;
					s++;
				}
			}
		}
		System.out.print(s);
	}
}
0