結果
問題 |
No.2011 Arbitrary Mod (Hidden)
|
ユーザー |
|
提出日時 | 2022-07-15 22:57:49 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 202 bytes |
コンパイル時間 | 2,283 ms |
コンパイル使用メモリ | 190,468 KB |
最終ジャッジ日時 | 2025-01-30 08:42:40 |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 WA * 42 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main () { long long ans = 1; for (int i = 0; i < (1 << 5); i ++) { ans *= 2; } cout << ans + 1 << endl; cout << 1 << endl; }