結果
| 問題 |
No.544 Delete 7
|
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2021-02-15 01:06:50 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 45 ms / 1,000 ms |
| コード長 | 226 bytes |
| コンパイル時間 | 195 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 53,888 KB |
| 最終ジャッジ日時 | 2024-07-22 12:54:46 |
| 合計ジャッジ時間 | 4,345 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 48 |
ソースコード
n = int(input())
from random import randrange
INF = 10**9
while True:
a = randrange(-INF,INF)
b = n-a
if -INF < b < INF:
if "7" not in str(a) and "7" not in str(b):
print(a,b)
exit()
convexineq