結果

問題 No.1182 Welcome
ユーザー uw_yu1rabbituw_yu1rabbit
提出日時 2020-08-22 15:03:16
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 428 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 65,504 KB
最終ジャッジ日時 2024-04-23 18:27:31
合計ジャッジ時間 929 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp:6:13: error: 'int_fast32_t' does not name a type
    6 | using i32 = int_fast32_t;
      |             ^~~~~~~~~~~~
main.cpp:7:13: error: 'int_fast64_t' does not name a type
    7 | using i64 = int_fast64_t;
      |             ^~~~~~~~~~~~
main.cpp:11:16: error: 'i64' was not declared in this scope
   11 | using P = pair<i64,i64>;
      |                ^~~
main.cpp:11:20: error: 'i64' was not declared in this scope
   11 | using P = pair<i64,i64>;
      |                    ^~~
main.cpp:11:23: error: template argument 1 is invalid
   11 | using P = pair<i64,i64>;
      |                       ^
main.cpp:11:23: error: template argument 2 is invalid

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<iostream>
using namespace std;
using i32 = int_fast32_t;
using i64 = int_fast64_t;
#define rep(i, n) for (i32 i = 0; i < (i32)(n); i++)
#define all(a) (a).begin(),(a).end()
#define rall(a) (a).rbegin(),(a).rend()
using P = pair<i64,i64>;

int main(){
ios::sync_with_stdio(false);
std::cin.tie(nullptr);
cout << "kaage" << endl;
}
0