結果

問題 No.544 Delete 7
ユーザー tentententen
提出日時 2022-10-07 08:30:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 82 ms / 1,000 ms
コード長 1,418 bytes
コンパイル時間 2,407 ms
コンパイル使用メモリ 79,692 KB
実行使用メモリ 40,212 KB
最終ジャッジ日時 2024-06-11 16:33:33
合計ジャッジ時間 7,348 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
38,188 KB
testcase_01 AC 67 ms
38,240 KB
testcase_02 AC 67 ms
38,172 KB
testcase_03 AC 69 ms
40,096 KB
testcase_04 AC 70 ms
40,080 KB
testcase_05 AC 82 ms
38,188 KB
testcase_06 AC 74 ms
38,444 KB
testcase_07 AC 68 ms
38,056 KB
testcase_08 AC 75 ms
38,452 KB
testcase_09 AC 70 ms
38,188 KB
testcase_10 AC 78 ms
38,516 KB
testcase_11 AC 67 ms
39,892 KB
testcase_12 AC 65 ms
39,908 KB
testcase_13 AC 65 ms
39,836 KB
testcase_14 AC 66 ms
39,832 KB
testcase_15 AC 80 ms
38,396 KB
testcase_16 AC 67 ms
40,212 KB
testcase_17 AC 71 ms
38,592 KB
testcase_18 AC 78 ms
38,188 KB
testcase_19 AC 66 ms
38,524 KB
testcase_20 AC 79 ms
40,204 KB
testcase_21 AC 67 ms
38,308 KB
testcase_22 AC 70 ms
38,304 KB
testcase_23 AC 64 ms
37,936 KB
testcase_24 AC 64 ms
38,232 KB
testcase_25 AC 71 ms
38,288 KB
testcase_26 AC 72 ms
38,644 KB
testcase_27 AC 70 ms
38,464 KB
testcase_28 AC 67 ms
39,996 KB
testcase_29 AC 63 ms
39,948 KB
testcase_30 AC 65 ms
40,032 KB
testcase_31 AC 71 ms
40,028 KB
testcase_32 AC 67 ms
38,388 KB
testcase_33 AC 67 ms
38,380 KB
testcase_34 AC 66 ms
38,444 KB
testcase_35 AC 76 ms
38,420 KB
testcase_36 AC 67 ms
39,860 KB
testcase_37 AC 72 ms
39,852 KB
testcase_38 AC 75 ms
38,284 KB
testcase_39 AC 76 ms
38,540 KB
testcase_40 AC 68 ms
38,288 KB
testcase_41 AC 64 ms
38,472 KB
testcase_42 AC 65 ms
38,452 KB
testcase_43 AC 64 ms
38,456 KB
testcase_44 AC 66 ms
39,796 KB
testcase_45 AC 77 ms
39,964 KB
testcase_46 AC 67 ms
38,444 KB
testcase_47 AC 68 ms
38,552 KB
testcase_48 AC 71 ms
38,528 KB
testcase_49 AC 82 ms
38,464 KB
testcase_50 AC 66 ms
38,316 KB
testcase_51 AC 64 ms
40,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] values = sc.next().toCharArray();
        char[] left = new char[values.length];
        char[] right = new char[values.length];
        for (int i = 0; i < values.length; i++) {
            if (values[i] == '7') {
                left[i] = '3';
                right[i] = '4';
            } else {
                left[i] = values[i];
                right[i] = '0';
            }
        }
        System.out.println(Integer.parseInt(new String(left)) + " " + Integer.parseInt(new  String(right)));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0