Submit solution
Points:
0.20 (partial)
Time limit:
1.0s
Memory limit:
256M
Problem type
Allowed languages
C, C++, Go, Java, Kotlin, Pascal, PyPy, Python, Rust, Scratch
In case the statement didn't load correctly, you can download the statement here: Statement
Lưu ý: các bạn không nhập, xuất dữ liệu bằng file kể cả khi đề bài có yêu cầu. Đọc, ghi dữ liệu được thực hiện ở stdin và stdout.
Comments
include <bits/stdc++.h>
using namespace std; long long k,i,j,d,a[1000]; int main(){ cin>>k; a[1]=1; d=1; while (a[d]<1e18){ d++; a[d]=a[d-1]2; } i=1; for (j=1; j<=d; j++){ a[j+d]=a[i]3; i++; } sort (a+1,a+2d+1); i=2d; while (a[i]>k) i--; cout<<k-a[i]; return 0; }