結果

問題 No.544 Delete 7
ユーザー tentententen
提出日時 2020-10-14 09:33:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 1,000 ms
コード長 435 bytes
コンパイル時間 2,486 ms
コンパイル使用メモリ 86,440 KB
実行使用メモリ 42,420 KB
最終ジャッジ日時 2024-07-20 19:01:24
合計ジャッジ時間 12,922 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
42,220 KB
testcase_01 AC 154 ms
42,064 KB
testcase_02 AC 154 ms
42,228 KB
testcase_03 AC 149 ms
42,156 KB
testcase_04 AC 141 ms
41,628 KB
testcase_05 AC 154 ms
42,176 KB
testcase_06 AC 154 ms
42,208 KB
testcase_07 AC 151 ms
42,236 KB
testcase_08 AC 154 ms
42,052 KB
testcase_09 AC 152 ms
42,252 KB
testcase_10 AC 153 ms
42,284 KB
testcase_11 AC 155 ms
42,252 KB
testcase_12 AC 154 ms
42,052 KB
testcase_13 AC 159 ms
42,128 KB
testcase_14 AC 160 ms
42,420 KB
testcase_15 AC 154 ms
42,284 KB
testcase_16 AC 155 ms
41,984 KB
testcase_17 AC 157 ms
42,236 KB
testcase_18 AC 156 ms
42,128 KB
testcase_19 AC 157 ms
42,200 KB
testcase_20 AC 155 ms
42,120 KB
testcase_21 AC 153 ms
42,360 KB
testcase_22 AC 143 ms
42,104 KB
testcase_23 AC 154 ms
42,212 KB
testcase_24 AC 154 ms
42,124 KB
testcase_25 AC 156 ms
42,124 KB
testcase_26 AC 153 ms
42,112 KB
testcase_27 AC 151 ms
42,204 KB
testcase_28 AC 157 ms
42,036 KB
testcase_29 AC 152 ms
42,280 KB
testcase_30 AC 153 ms
41,992 KB
testcase_31 AC 156 ms
42,084 KB
testcase_32 AC 155 ms
41,988 KB
testcase_33 AC 156 ms
42,108 KB
testcase_34 AC 154 ms
41,988 KB
testcase_35 AC 157 ms
42,264 KB
testcase_36 AC 139 ms
41,876 KB
testcase_37 AC 158 ms
42,208 KB
testcase_38 AC 158 ms
42,084 KB
testcase_39 AC 138 ms
41,592 KB
testcase_40 AC 152 ms
42,284 KB
testcase_41 AC 155 ms
41,952 KB
testcase_42 AC 151 ms
42,136 KB
testcase_43 AC 150 ms
42,252 KB
testcase_44 AC 153 ms
42,280 KB
testcase_45 AC 154 ms
42,088 KB
testcase_46 AC 154 ms
42,204 KB
testcase_47 AC 154 ms
42,032 KB
testcase_48 AC 141 ms
41,780 KB
testcase_49 AC 153 ms
42,260 KB
testcase_50 AC 138 ms
41,692 KB
testcase_51 AC 151 ms
42,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	char[] arr = sc.next().toCharArray();
    	int a = 0;
    	int b = 0;
    	for (char c : arr) {
    	    a *= 10;
    	    b *= 10;
    	    if (c == '7') {
    	        a += 1;
    	        b += 6;
    	    } else {
    	        a += c - '0';
    	    }
    	}
    	System.out.println(a + " " + b);
	}
}
0