結果
問題 | No.3047 Riddle of Cards |
ユーザー | risujiroh |
提出日時 | 2019-04-01 21:38:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 553 bytes |
コンパイル時間 | 1,404 ms |
コンパイル使用メモリ | 166,556 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 04:11:33 |
合計ジャッジ時間 | 1,823 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:18:34: warning: left shift count >= width of type [-Wshift-count-overflow] 18 | string s = to_string(~(~0ULL << 64)); | ~~~~~~^~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; using lint = unsigned long long; template<class T = int> using V = vector<T>; template<class T = int> using VV = V< V<T> >; lint powll(lint a, int n) { assert(n >= 0); lint res = 1; for (; n > 0; a *= a, n >>= 1) if (n & 1) res *= a; return res; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n, m; cin >> n >> m; if (n == 16 and m == 16) { string s = to_string(~(~0ULL << 64)); ++s.back(); cout << s << '\n'; return 0; } cout << powll(m, n) << '\n'; }