結果
問題 | No.1642 Registration |
ユーザー |
|
提出日時 | 2021-08-28 22:20:32 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 205 bytes |
コンパイル時間 | 464 ms |
コンパイル使用メモリ | 62,336 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-21 22:37:49 |
合計ジャッジ時間 | 1,071 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 |
ソースコード
#include <iostream>#include <string.h>typedef long long LL;using namespace std;int main(int argc, char* argv[]){int N;cin >> N;char S[10];sprintf(S,"%03d",N);cout << S << endl;return 0;}