結果
問題 | No.756 チャンパーノウン定数 (1) |
ユーザー |
|
提出日時 | 2018-12-06 21:41:51 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 259 bytes |
コンパイル時間 | 511 ms |
コンパイル使用メモリ | 64,860 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-14 02:35:38 |
合計ジャッジ時間 | 1,313 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
#include <iostream> #include <string> using namespace std; int main(int argc, char* argv[]) { string S="12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455"; int D; cin>>D; cout<<S[D-1]<<endl; return 0; }