結果

問題 No.8042 本棚
ユーザー 👑 tatyam
提出日時 2019-04-01 21:16:48
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 155 bytes
コンパイル時間 2,373 ms
コンパイル使用メモリ 201,828 KB
最終ジャッジ日時 2025-01-07 00:49:36
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;int main(){int n;cin>>n;string s[n];for(int i=n;i--;)getline(cin,s[i]);sort(s,s+n);for(auto&i:s)cout<<i<<endl;}
0