結果

問題 No.1642 Registration
ユーザー You_saku
提出日時 2021-09-11 00:45:03
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 611 ms
コンパイル使用メモリ 79,356 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 20:51:23
合計ジャッジ時間 1,211 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<string>
#include<set>
#include<map>
#include <ios>
#include <iomanip> 
#include<algorithm>

using namespace std;

int main(){
    int n;
    cin >> n;
    std::cout << std::setfill('0') << std::right << std::setw(3) << n;
    return 0;
}
0