結果
| 問題 | No.544 Delete 7 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-01-28 16:46:38 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 180 bytes |
| 記録 | |
| コンパイル時間 | 689 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 15,580 KB |
| 最終ジャッジ日時 | 2026-06-03 09:22:53 |
| 合計ジャッジ時間 | 9,994 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 46 WA * 2 |
ソースコード
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()