結果
| 問題 |
No.1232 2^x = x
|
| コンテスト | |
| ユーザー |
t33f
|
| 提出日時 | 2019-11-30 18:32:52 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 114 bytes |
| コンパイル時間 | 557 ms |
| コンパイル使用メモリ | 62,708 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-21 03:26:43 |
| 合計ジャッジ時間 | 1,064 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 3 |
ソースコード
#include <iostream>
using namespace std;
int main() {
int n; cin >> n;
while (n--) cout << -1 << endl;
}
t33f