結果
| 問題 | No.544 Delete 7 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-01-29 09:51:25 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 137 bytes |
| 記録 | |
| コンパイル時間 | 512 ms |
| コンパイル使用メモリ | 20,952 KB |
| 実行使用メモリ | 23,200 KB |
| 最終ジャッジ日時 | 2026-06-03 12:09:47 |
| 合計ジャッジ時間 | 4,070 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 2 TLE * 1 -- * 45 |
ソースコード
n=int(input())
for i in range(1,n):
ans=str(n-i)
if "7" not in str(i) and "7" not in ans:
print(i,int(ans))
break