結果
問題 | No.756 チャンパーノウン定数 (1) |
ユーザー |
![]() |
提出日時 | 2019-03-14 16:41:33 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 232 bytes |
コンパイル時間 | 1,186 ms |
コンパイル使用メモリ | 25,856 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-26 20:56:55 |
合計ジャッジ時間 | 1,035 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
#include <stdio.h> int main() { const char c[128] = "0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960"; int n; scanf("%d", &n); printf("%c\n", c[n]); return 0; }