結果
| 問題 | No.544 Delete 7 | 
| コンテスト | |
| ユーザー |  surprise_tanaka | 
| 提出日時 | 2018-12-03 13:37:56 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 32 ms / 1,000 ms | 
| コード長 | 158 bytes | 
| コンパイル時間 | 540 ms | 
| コンパイル使用メモリ | 12,288 KB | 
| 実行使用メモリ | 10,624 KB | 
| 最終ジャッジ日時 | 2024-07-01 05:36:41 | 
| 合計ジャッジ時間 | 3,886 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 48 | 
ソースコード
N = input()
A_list = list()
for i in N:
    if i == "7":
        i = "6"
    A_list.append(i)
A_str = "".join(A_list)
A = int(A_str)
B = int(N) - A
print(A,B)
            
            
            
        