結果
問題 |
No.339 何人が回答したのか
|
ユーザー |
|
提出日時 | 2016-02-09 18:16:05 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 485 bytes |
コンパイル時間 | 1,177 ms |
コンパイル使用メモリ | 157,564 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-21 22:00:34 |
合計ジャッジ時間 | 2,749 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | AC * 52 WA * 9 |
ソースコード
#include <bits/stdc++.h> #include <string> #define REP(i,a,b) for(i=a;i<b;i++) #define rep(i,n) REP(i,0,n) using namespace std; typedef long long ll; typedef unsigned long long ull; typedef long double ld; /* pow(x,n)はx^nを返すよ! */ ull pow(ull x,ull n) { ull res = 1; while(n > 0) { if(n&1) res = res * x; x = x * x; n >>= 1; } return res; } int main() { int i,j,k; int n; ull tle = pow((ull)2,(ull)63); puts("100"); return 0; }