結果
| 問題 |
No.1562 Welcome to ????? & ????
|
| コンテスト | |
| ユーザー |
tnakao0123
|
| 提出日時 | 2021-06-28 14:44:14 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 737 bytes |
| コンパイル時間 | 957 ms |
| コンパイル使用メモリ | 92,896 KB |
| 実行使用メモリ | 6,816 KB |
| 最終ジャッジ日時 | 2024-06-25 12:10:15 |
| 合計ジャッジ時間 | 1,311 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
/* -*- coding: utf-8 -*-
*
* 1562.cc: No.1562 Welcome to ????? & ???? - yukicoder
*/
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
using namespace std;
/* constant */
const int MAX_N = 100;
const int INF = 1 << 30;
const long long LINF = 1LL << 60;
/* typedef */
typedef long long ll;
typedef vector<int> vi;
typedef queue<int> qi;
typedef pair<int,int> pii;
/* global variables */
/* subroutines */
/* main */
int main() {
puts("Knock&Dive");
return 0;
}
tnakao0123