結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー fal_rndfal_rnd
提出日時 2018-02-12 17:41:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 1,000 ms
コード長 243 bytes
コンパイル時間 1,929 ms
コンパイル使用メモリ 75,828 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-06-28 18:56:44
合計ジャッジ時間 6,474 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,208 KB
testcase_01 AC 118 ms
41,172 KB
testcase_02 AC 112 ms
41,152 KB
testcase_03 AC 114 ms
41,580 KB
testcase_04 AC 98 ms
39,680 KB
testcase_05 AC 103 ms
40,252 KB
testcase_06 AC 116 ms
41,136 KB
testcase_07 AC 116 ms
41,232 KB
testcase_08 AC 111 ms
40,508 KB
testcase_09 AC 113 ms
39,880 KB
testcase_10 AC 115 ms
41,296 KB
testcase_11 AC 113 ms
40,860 KB
testcase_12 AC 117 ms
41,332 KB
testcase_13 AC 113 ms
40,116 KB
testcase_14 AC 113 ms
41,004 KB
testcase_15 AC 114 ms
39,880 KB
testcase_16 AC 110 ms
40,576 KB
testcase_17 AC 104 ms
40,064 KB
testcase_18 AC 114 ms
41,076 KB
testcase_19 AC 114 ms
40,180 KB
testcase_20 AC 115 ms
39,888 KB
testcase_21 AC 117 ms
41,424 KB
testcase_22 AC 118 ms
41,128 KB
testcase_23 AC 114 ms
41,248 KB
testcase_24 AC 115 ms
41,116 KB
testcase_25 AC 115 ms
41,172 KB
testcase_26 AC 116 ms
41,168 KB
testcase_27 AC 114 ms
40,524 KB
testcase_28 AC 106 ms
39,808 KB
testcase_29 AC 110 ms
40,464 KB
testcase_30 AC 115 ms
41,580 KB
testcase_31 AC 106 ms
40,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class A{
	public static void main(String[]$){
		Scanner s=new Scanner(System.in);
		int r=0;
		for(int i=0;i<5;++i){
			int n=s.nextInt();
			r+=n%15==0?8:(n%3)*(n%5)==0?4:(""+n).length();
		}
		System.out.println(r);
	}
}
0