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