제출 #482274

#제출 시각아이디문제언어결과실행 시간메모리
482274wnsduds1크레이피쉬 글쓰는 기계 (IOI12_scrivener)C11
컴파일 에러
0 ms0 KiB
#include<iostream> #include<vector> #include<algorithm> #include<set> #include<queue> #include<bitset> #include<string> #define SIZE 101 #define INF 987654321 #define fastio ios::sync_with_stdio(0), cin.tie(0), cout.tie(0); using namespace std; int n; int main() { fastio; string s; string v; vector<string>str(n); vector<char>ret; int idx = 0; cin >> n; while (n--) { cin >> s; if (s == "T") { cin >> v; if (idx == 0) str.push_back(v); else str.push_back(str[idx - 1] + v); idx += 1; } else if (s == "U") { int value; cin >> value; str.push_back(str[idx - (value+1)]); idx += 1; } else { int value; cin >> value; ret.push_back(str[idx - 1][value]); } } for (auto&ele : ret) { cout << ele << "\n"; } }

컴파일 시 표준 에러 (stderr) 메시지

scrivener.c:1:9: fatal error: iostream: No such file or directory
    1 | #include<iostream>
      |         ^~~~~~~~~~
compilation terminated.