結果

問題 No.9000 Hello World! (テスト用)
ユーザー syoken_desukasyoken_desuka
提出日時 2015-07-28 02:33:20
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,566 bytes
コンパイル時間 852 ms
コンパイル使用メモリ 97,116 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-26 06:15:13
合計ジャッジ時間 1,377 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
    
}
0