結果
| 問題 |
No.9000 Hello World! (テスト用)
|
| ユーザー |
syoken_desuka
|
| 提出日時 | 2015-07-28 02:33:20 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 1,566 bytes |
| コンパイル時間 | 1,037 ms |
| コンパイル使用メモリ | 98,508 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-24 21:23:11 |
| 合計ジャッジ時間 | 1,479 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
ソースコード
#include <algorithm>
#include <array>
#include <sstream>
#include <cstdio>
#include <functional>
#include <cstdlib>
#include <cctype>
#include <ostream>
#include <complex>
#include <cmath>
#include <iostream>
#include <stack>
#include <queue>
#include <list>
#include <map>
#include <numeric>
#include <set>
#include <sstream>
#include <bitset>
#include <iomanip>
#include <string>
#include <vector>
#include <string>
using namespace std;
typedef long long ll;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define ANSWER(x) cout << (x) << endl;
#define DANSWER(x) cout << set_presicion(10) << (x) << endl;
#define pb push_back
#define mp make_pair
#define ALL(a) begin((a)),end((a))
#define INIT(a,n) for(auto &hoge : (a)) hoge = (n);
#define pii pair<int,int>
#define pss pair<string,string>
#define pis pair<int,string>
#define psi pair<string,int>
#define VS vector<string>
#define VI vector<int>
#define SUBSTR(s,i,l) string((s), (i), (l))
#define pi 2*acos(0.0)
#define eps 1e-14
int main()
{
bool syoken[200];
INIT(syoken, false);
string aaa[20];
INIT(aaa, "123456");
sort(ALL(aaa));
priority_queue<int,vector<int>,greater<int>> nmn;
auto p = [](int x, int y) -> int { return ( x < y );} ;
//(less<int>)([](int x, int y) -> bool { return ( x < y );});
priority_queue< int, vector<int>, less<int> > kkkkkn;
VI an;
sort(begin(an),end(an), [](int x, int y) -> int{ return ( x < y );});
int m = stoi(SUBSTR(aaa[0], 2, 4));
ANSWER("Hello World!");
return 0;
}
syoken_desuka