結果
| 問題 | No.544 Delete 7 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-01-28 16:48:46 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 169 bytes |
| 記録 | |
| コンパイル時間 | 873 ms |
| コンパイル使用メモリ | 20,704 KB |
| 実行使用メモリ | 15,584 KB |
| 最終ジャッジ日時 | 2026-06-03 09:26:36 |
| 合計ジャッジ時間 | 11,948 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 3 |
| other | AC * 12 WA * 36 |
ソースコード
import random
n=int(input())
while True:
i=random.randint(-10**15,10**15)
x=n-i
if '7' not in str(x) and '7' not in str(i):
print(i,x)
exit()