結果
問題 | No.8093 Please GCD |
ユーザー | fura |
提出日時 | 2023-09-12 22:54:16 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 118 ms / 2,000 ms |
コード長 | 198 bytes |
コンパイル時間 | 2,682 ms |
コンパイル使用メモリ | 244,156 KB |
実行使用メモリ | 25,476 KB |
平均クエリ数 | 8098.53 |
最終ジャッジ日時 | 2024-06-30 10:23:29 |
合計ジャッジ時間 | 7,867 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 30 |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); i++) using namespace std; int main() { int n; cin >> n; rep (i, n) cout << "! " << i + 1 << endl; return 0; }