結果
問題 |
No.1256 連続整数列
|
ユーザー |
|
提出日時 | 2025-09-27 06:30:20 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 294 bytes |
コンパイル時間 | 3,110 ms |
コンパイル使用メモリ | 274,884 KB |
実行使用メモリ | 7,716 KB |
最終ジャッジ日時 | 2025-09-27 06:30:26 |
合計ジャッジ時間 | 5,541 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 39 WA * 1 |
ソースコード
// #pragma GCC optimize ("Ofast") // #pragma GCC optimize ("unroll-loops") // #pragma GCC target ("avx,avx2,fma") #include <bits/stdc++.h> using std::cin, std::cout, std::cerr; using ll = long long; int main() { std::ios::sync_with_stdio(false); ll n; cin >> n; cout << "YES\n"; }