結果
問題 | No.490 yukiソート |
ユーザー |
|
提出日時 | 2019-07-30 23:07:22 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 232 bytes |
コンパイル時間 | 2,124 ms |
コンパイル使用メモリ | 196,048 KB |
最終ジャッジ日時 | 2025-01-07 10:10:14 |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 13 WA * 21 |
ソースコード
#include <bits/stdc++.h>using namespace std;typedef long long ll;int main() {int n;cin>>n;int a[n];for(int i=0;i<n;i++)cin>>a[i];sort(a,a+n);for(int x:a)cout<<x<<' ';cout<<endl;return 0;}