結果

問題 No.544 Delete 7
ユーザー Shun_PIShun_PI
提出日時 2017-07-14 22:37:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 91 ms / 1,000 ms
コード長 2,163 bytes
コンパイル時間 2,406 ms
コンパイル使用メモリ 79,504 KB
実行使用メモリ 52,552 KB
最終ジャッジ日時 2024-05-01 11:53:17
合計ジャッジ時間 8,715 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
51,160 KB
testcase_01 AC 77 ms
50,788 KB
testcase_02 AC 82 ms
51,008 KB
testcase_03 AC 75 ms
50,976 KB
testcase_04 AC 74 ms
50,584 KB
testcase_05 AC 76 ms
50,968 KB
testcase_06 AC 76 ms
50,908 KB
testcase_07 AC 83 ms
50,868 KB
testcase_08 AC 83 ms
50,684 KB
testcase_09 AC 77 ms
50,888 KB
testcase_10 AC 76 ms
51,048 KB
testcase_11 AC 77 ms
51,020 KB
testcase_12 AC 76 ms
50,848 KB
testcase_13 AC 75 ms
50,812 KB
testcase_14 AC 86 ms
51,180 KB
testcase_15 AC 77 ms
50,888 KB
testcase_16 AC 87 ms
52,552 KB
testcase_17 AC 91 ms
51,068 KB
testcase_18 AC 77 ms
50,924 KB
testcase_19 AC 80 ms
50,824 KB
testcase_20 AC 79 ms
50,932 KB
testcase_21 AC 80 ms
51,644 KB
testcase_22 AC 81 ms
51,276 KB
testcase_23 AC 82 ms
50,936 KB
testcase_24 AC 88 ms
50,820 KB
testcase_25 AC 78 ms
51,044 KB
testcase_26 AC 77 ms
50,940 KB
testcase_27 AC 84 ms
51,120 KB
testcase_28 AC 80 ms
52,420 KB
testcase_29 AC 75 ms
50,856 KB
testcase_30 AC 82 ms
50,952 KB
testcase_31 AC 75 ms
50,800 KB
testcase_32 AC 76 ms
50,748 KB
testcase_33 AC 76 ms
50,868 KB
testcase_34 AC 84 ms
50,816 KB
testcase_35 AC 86 ms
51,168 KB
testcase_36 AC 83 ms
50,836 KB
testcase_37 AC 83 ms
50,968 KB
testcase_38 AC 77 ms
50,728 KB
testcase_39 AC 77 ms
50,876 KB
testcase_40 AC 76 ms
50,692 KB
testcase_41 AC 75 ms
50,760 KB
testcase_42 AC 86 ms
51,012 KB
testcase_43 AC 76 ms
50,752 KB
testcase_44 AC 75 ms
50,780 KB
testcase_45 AC 79 ms
50,816 KB
testcase_46 AC 76 ms
51,188 KB
testcase_47 AC 79 ms
51,048 KB
testcase_48 AC 84 ms
50,928 KB
testcase_49 AC 78 ms
50,688 KB
testcase_50 AC 79 ms
50,832 KB
testcase_51 AC 88 ms
50,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.util.NoSuchElementException;
 
public class Main {
	private static FastScanner sc = new FastScanner();
	
	public static void main(String[] args) {
		int N = sc.nextInt();
		
		int temp = N;
		int digit = 0;
		int A = 0;
		int B = 0;
		while(temp != 0) {
			if(temp%10 == 7) {
				A += 6 * Math.pow(10, digit);
				B += Math.pow(10, digit);
			} else {
				A += (temp%10) * Math.pow(10, digit);
			}
			
			temp /= 10;
			digit++;
		}
		
		System.out.println(A + " " + B);
	}
	
	static class FastScanner {
        private final InputStream in = System.in;
        private final byte[] buffer = new byte[1024];
        private int ptr = 0;
        private int buflen = 0;
        private boolean hasNextByte() {
            if(ptr < buflen) {
                return true;
            } else {
                ptr = 0;
                try {
                    buflen = in.read(buffer);
                } catch(IOException e) {
                    e.printStackTrace();
                }
                if(buflen <= 0) {
                    return false;
                }
            }
            return true;
        }
        private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;}
        private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;}
        private void skipUnprintable() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;}
        public boolean hasNext() { skipUnprintable(); return hasNextByte();}
        public String next() {
            if (!hasNext()) throw new NoSuchElementException();
            StringBuilder sb = new StringBuilder();
            int b = readByte();
            while(isPrintableChar(b)) {
                sb.appendCodePoint(b);
                b = readByte();
            }
            return sb.toString();
        }
        public long nextLong() {
            return Long.parseLong(next());
        }
        public int nextInt(){
            return Integer.parseInt(next());
        }
        public double nextDouble(){
            return Double.parseDouble(next());
        }
    }
}
0