結果

問題 No.544 Delete 7
ユーザー YamaKasaYamaKasa
提出日時 2018-09-24 17:47:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 1,000 ms
コード長 738 bytes
コンパイル時間 3,396 ms
コンパイル使用メモリ 77,116 KB
実行使用メモリ 57,072 KB
最終ジャッジ日時 2024-09-22 12:36:29
合計ジャッジ時間 13,416 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
54,748 KB
testcase_01 AC 148 ms
55,032 KB
testcase_02 AC 154 ms
54,840 KB
testcase_03 AC 152 ms
55,040 KB
testcase_04 AC 150 ms
54,652 KB
testcase_05 AC 149 ms
54,784 KB
testcase_06 AC 152 ms
54,864 KB
testcase_07 AC 138 ms
54,708 KB
testcase_08 AC 144 ms
54,752 KB
testcase_09 AC 153 ms
54,808 KB
testcase_10 AC 150 ms
54,860 KB
testcase_11 AC 153 ms
54,976 KB
testcase_12 AC 150 ms
55,204 KB
testcase_13 AC 151 ms
54,860 KB
testcase_14 AC 152 ms
57,072 KB
testcase_15 AC 151 ms
55,028 KB
testcase_16 AC 150 ms
55,088 KB
testcase_17 AC 152 ms
54,756 KB
testcase_18 AC 138 ms
54,792 KB
testcase_19 AC 148 ms
54,996 KB
testcase_20 AC 150 ms
55,008 KB
testcase_21 AC 150 ms
55,116 KB
testcase_22 AC 152 ms
54,864 KB
testcase_23 AC 153 ms
54,908 KB
testcase_24 AC 150 ms
55,084 KB
testcase_25 AC 152 ms
54,804 KB
testcase_26 AC 148 ms
54,856 KB
testcase_27 AC 151 ms
54,864 KB
testcase_28 AC 151 ms
54,828 KB
testcase_29 AC 149 ms
54,892 KB
testcase_30 AC 150 ms
54,756 KB
testcase_31 AC 151 ms
54,776 KB
testcase_32 AC 149 ms
55,060 KB
testcase_33 AC 139 ms
54,772 KB
testcase_34 AC 151 ms
55,056 KB
testcase_35 AC 149 ms
55,204 KB
testcase_36 AC 151 ms
54,976 KB
testcase_37 AC 152 ms
54,680 KB
testcase_38 AC 151 ms
54,952 KB
testcase_39 AC 151 ms
54,876 KB
testcase_40 AC 151 ms
54,736 KB
testcase_41 AC 153 ms
54,816 KB
testcase_42 AC 152 ms
54,760 KB
testcase_43 AC 150 ms
55,028 KB
testcase_44 AC 155 ms
54,956 KB
testcase_45 AC 151 ms
54,816 KB
testcase_46 AC 150 ms
54,800 KB
testcase_47 AC 151 ms
54,812 KB
testcase_48 AC 149 ms
55,180 KB
testcase_49 AC 149 ms
54,888 KB
testcase_50 AC 149 ms
54,928 KB
testcase_51 AC 151 ms
54,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String N = scan.next();
		scan.close();
		StringBuilder A = new StringBuilder();
		StringBuilder B = new StringBuilder();
		for(int i = 0; i < N.length(); i++) {
			char c = N.charAt(i);
			int k = Character.getNumericValue(c);
			if(k == 7) {
				A.append(3);
				B.append(4);
			}else {
				if(k % 2 == 0) {
					int t = k / 2;
					A.append(t);
					B.append(t);
				}else {
					int t = k / 2;
					A.append(t + 1);
					if(!(B.length() == 0 && t == 0)) {
						B.append(t);
					}
				}
			}
		}
		if(B.length() == 0) {
			B.append(0);
		}
		System.out.println(A.toString() + " " + B.toString());
	}
}
0