結果
問題 | No.1182 Welcome |
ユーザー | roahhhh |
提出日時 | 2020-08-22 23:57:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 432 bytes |
コンパイル時間 | 1,498 ms |
コンパイル使用メモリ | 165,776 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 19:14:45 |
合計ジャッジ時間 | 1,803 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ソースコード
#include <bits/stdc++.h> #include <stdlib.h> #include <fstream> #include <iostream> using namespace std; typedef long long ll; typedef pair<int,int> P; typedef pair<ll,ll> llP; ll mod(ll a, ll b){ ll ret=a%b; if(ret<0) ret+=b; return ret; } ll modpow(ll a,ll b,ll c){ ll res=1; while(b>0){ if(b&1) res=mod(res*a,c); a=mod(a*a,c); b>>=1; } return res; } int main() { cout<<"kaage"<<endl; return 0; }