結果

問題 No.756 チャンパーノウン定数 (1)
ユーザー asdfghjkl;
提出日時 2020-03-09 21:11:54
言語 C
(gcc 13.3.0)
結果
RE  
実行時間 -
コード長 232 bytes
コンパイル時間 1,044 ms
コンパイル使用メモリ 27,008 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-14 07:19:39
合計ジャッジ時間 3,707 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other WA * 1 RE * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int main(void){
int d;scanf("%d",&d);
char s[]="12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455";
printf("%s",s[d+1]);

}
0