結果
問題 |
No.8093 Please GCD
|
ユーザー |
![]() |
提出日時 | 2025-09-03 00:15:54 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 130 ms / 2,000 ms |
コード長 | 295 bytes |
コンパイル時間 | 5,223 ms |
コンパイル使用メモリ | 315,900 KB |
実行使用メモリ | 25,984 KB |
平均クエリ数 | 8098.53 |
最終ジャッジ日時 | 2025-09-03 00:16:06 |
合計ジャッジ時間 | 11,095 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 30 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (n); ++i) using ll = long long; using ull = unsigned long long; int main() { // cin.tie(nullptr)->sync_with_stdio(false); int n; cin >> n; rep(i, n) cout << format("! {}", i + 1) << endl; return 0; }