結果

問題 No.1458 Segment Function
ユーザー 小野寺健小野寺健
提出日時 2021-05-01 12:05:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 723 bytes
コンパイル時間 3,134 ms
コンパイル使用メモリ 77,744 KB
実行使用メモリ 56,872 KB
最終ジャッジ日時 2024-10-12 13:39:04
合計ジャッジ時間 10,710 ms
ジャッジサーバーID
(参考情報)
judge / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,820 KB
testcase_01 AC 117 ms
53,700 KB
testcase_02 AC 116 ms
54,004 KB
testcase_03 AC 118 ms
53,832 KB
testcase_04 AC 107 ms
53,332 KB
testcase_05 AC 116 ms
53,924 KB
testcase_06 AC 114 ms
53,820 KB
testcase_07 AC 122 ms
53,928 KB
testcase_08 AC 191 ms
54,332 KB
testcase_09 AC 207 ms
54,424 KB
testcase_10 AC 202 ms
54,348 KB
testcase_11 AC 198 ms
54,392 KB
testcase_12 AC 210 ms
54,156 KB
testcase_13 AC 194 ms
54,224 KB
testcase_14 AC 181 ms
54,240 KB
testcase_15 AC 184 ms
54,064 KB
testcase_16 AC 188 ms
54,160 KB
testcase_17 AC 186 ms
53,804 KB
testcase_18 AC 221 ms
56,540 KB
testcase_19 AC 218 ms
56,764 KB
testcase_20 AC 218 ms
56,872 KB
testcase_21 AC 228 ms
56,384 KB
testcase_22 AC 208 ms
56,612 KB
testcase_23 AC 115 ms
53,820 KB
testcase_24 AC 192 ms
56,236 KB
testcase_25 AC 117 ms
53,968 KB
testcase_26 AC 219 ms
56,488 KB
testcase_27 AC 206 ms
56,380 KB
testcase_28 AC 103 ms
52,604 KB
testcase_29 AC 200 ms
56,228 KB
testcase_30 AC 198 ms
56,472 KB
testcase_31 AC 187 ms
54,172 KB
testcase_32 AC 206 ms
54,300 KB
testcase_33 AC 201 ms
54,300 KB
testcase_34 AC 191 ms
54,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No1458 {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String P = scan.next();
		String N = scan.next();
		scan.close();
		
		int[] T = new int[] {6, 2, 5, 5, 4, 5, 6, 4, 7, 6};
		
		int n = N.length() > 1 ? 10 : Integer.valueOf(N);
		if (n == 0) {
			System.out.println(P);
			return;
		}
		int p = 0, i = 0;
		if (P.charAt(0) == '-') {
			p++;
			i++;
		}
		for (; i < P.length(); i++) {
			p += T[P.charAt(i) - '0'];
		}
		for (i=0; i < n-1; i++) {
			if (p == 4 || p == 5 || p == 6) {
				break;
			}
			int np = 0;
			while (p > 0) {
				np += T[p % 10];
				p /= 10;
			}
			p = np;
		}
		System.out.println(p);
	}

}
0