結果
問題 |
No.8042 本棚
|
ユーザー |
![]() |
提出日時 | 2019-04-01 22:41:29 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 147 bytes |
コンパイル時間 | 1,690 ms |
コンパイル使用メモリ | 172,232 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 01:53:24 |
合計ジャッジ時間 | 2,513 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
コンパイルメッセージ
main.cpp:2:27: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 2 | using namespace std;int i;main(){string s;set<string>x;while(getline(cin,s))if(i++)x.insert(s);for(auto s:x)cout<<s<<endl;} | ^~~~
ソースコード
#include<bits/stdc++.h> using namespace std;int i;main(){string s;set<string>x;while(getline(cin,s))if(i++)x.insert(s);for(auto s:x)cout<<s<<endl;}