結果

問題 No.544 Delete 7
ユーザー tentententen
提出日時 2023-12-18 13:10:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 110 ms / 1,000 ms
コード長 1,809 bytes
コンパイル時間 2,669 ms
コンパイル使用メモリ 91,212 KB
実行使用メモリ 53,044 KB
最終ジャッジ日時 2024-09-27 08:22:48
合計ジャッジ時間 10,063 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
51,348 KB
testcase_01 AC 90 ms
51,480 KB
testcase_02 AC 97 ms
51,560 KB
testcase_03 AC 96 ms
51,432 KB
testcase_04 AC 95 ms
51,444 KB
testcase_05 AC 94 ms
51,524 KB
testcase_06 AC 94 ms
51,296 KB
testcase_07 AC 90 ms
51,312 KB
testcase_08 AC 92 ms
51,348 KB
testcase_09 AC 93 ms
51,336 KB
testcase_10 AC 94 ms
51,452 KB
testcase_11 AC 93 ms
51,564 KB
testcase_12 AC 92 ms
51,364 KB
testcase_13 AC 94 ms
51,120 KB
testcase_14 AC 92 ms
51,428 KB
testcase_15 AC 96 ms
51,164 KB
testcase_16 AC 94 ms
51,452 KB
testcase_17 AC 96 ms
51,228 KB
testcase_18 AC 93 ms
51,516 KB
testcase_19 AC 104 ms
51,416 KB
testcase_20 AC 94 ms
51,492 KB
testcase_21 AC 101 ms
51,344 KB
testcase_22 AC 110 ms
53,044 KB
testcase_23 AC 95 ms
51,524 KB
testcase_24 AC 92 ms
51,548 KB
testcase_25 AC 96 ms
51,356 KB
testcase_26 AC 94 ms
51,520 KB
testcase_27 AC 107 ms
51,432 KB
testcase_28 AC 92 ms
51,132 KB
testcase_29 AC 95 ms
51,492 KB
testcase_30 AC 90 ms
51,460 KB
testcase_31 AC 96 ms
51,576 KB
testcase_32 AC 95 ms
51,464 KB
testcase_33 AC 96 ms
51,336 KB
testcase_34 AC 104 ms
51,424 KB
testcase_35 AC 93 ms
51,464 KB
testcase_36 AC 94 ms
51,044 KB
testcase_37 AC 97 ms
51,580 KB
testcase_38 AC 94 ms
51,584 KB
testcase_39 AC 97 ms
51,372 KB
testcase_40 AC 95 ms
51,364 KB
testcase_41 AC 95 ms
51,540 KB
testcase_42 AC 103 ms
51,320 KB
testcase_43 AC 91 ms
51,148 KB
testcase_44 AC 98 ms
51,416 KB
testcase_45 AC 96 ms
51,276 KB
testcase_46 AC 96 ms
51,452 KB
testcase_47 AC 96 ms
51,500 KB
testcase_48 AC 107 ms
52,636 KB
testcase_49 AC 94 ms
51,520 KB
testcase_50 AC 96 ms
51,428 KB
testcase_51 AC 99 ms
52,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] input = sc.next().toCharArray();
        char[] output = new char[input.length];
        Arrays.fill(output, '0');
        for (int i = 0; i < input.length; i++) {
            if (input[i] == '7') {
                input[i] = '6';
                output[i] = '1';
            }
        }
        System.out.println(new String(input) + " " + Integer.parseInt(new String(output)));
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0