結果
| 問題 | No.1642 Registration |
| コンテスト | |
| ユーザー |
bal4u
|
| 提出日時 | 2021-08-13 21:22:51 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 134 bytes |
| 記録 | |
| コンパイル時間 | 186 ms |
| コンパイル使用メモリ | 34,880 KB |
| 最終ジャッジ日時 | 2026-02-22 07:49:42 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 |
ソースコード
// yuki 1642 Registration
// 2021.8.13
#include <stdio.h>
int main()
{
int N;
scanf("%d", &N);
printf("%03d\n", N);
return 0;
}
bal4u