結果
問題 |
No.544 Delete 7
|
ユーザー |
|
提出日時 | 2018-01-29 09:51:25 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 137 bytes |
コンパイル時間 | 322 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 21,248 KB |
最終ジャッジ日時 | 2024-12-29 17:58:35 |
合計ジャッジ時間 | 20,866 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 41 TLE * 7 |
ソースコード
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