1 solutions

  • 0
    @ 2025-11-27 11:58:28

    C++ :

    #include<bits/stdc++.h>
     
    using namespace std;
     
    long long n;
    string a = "0123456789ABCDEF";
    void print(int i) {
        cout << a[i / 16] << a[i % 16] << " ";
    }
     
    int main() {
        cin >> n;
        if (n == 0) {
            cout << "00";
            return 0;
        }
        while (n > 0) {
            int k = n % 128;
            n /= 128;
            if (n > 0)
                print(k + 128);
            else
                print(k);
        }
        return 0;
    }
    
    • 1

    Information

    ID
    83
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    (None)
    Tags
    # Submissions
    0
    Accepted
    0
    Uploaded By