結果
| 問題 | No.544 Delete 7 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2022-01-28 16:46:38 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 180 bytes | 
| コンパイル時間 | 1,135 ms | 
| コンパイル使用メモリ | 12,288 KB | 
| 実行使用メモリ | 11,008 KB | 
| 最終ジャッジ日時 | 2024-12-29 14:59:43 | 
| 合計ジャッジ時間 | 5,003 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 44 WA * 4 | 
ソースコード
import random
n=int(input())
for _ in range(10000):
    i=random.randint(-10**9,10**9+1)
    x=n-i
    if '7' not in str(x) and '7' not in str(i):
        print(i,x)
        exit()
            
            
            
        