結果
| 問題 |
No.756 チャンパーノウン定数 (1)
|
| コンテスト | |
| ユーザー |
t33f
|
| 提出日時 | 2018-12-06 20:11:52 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 208 bytes |
| コンパイル時間 | 527 ms |
| コンパイル使用メモリ | 60,636 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-14 02:35:28 |
| 合計ジャッジ時間 | 1,315 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
#include <map>
#include <iostream>
using namespace std;
int main() {
int i; cin >> i;
string str = "";
for (int i = 0; str.size() <= 100; i++) str += to_string(i);
cout << str[i] << endl;
}
t33f