結果
問題 | No.2425 Power Range GCD |
ユーザー |
|
提出日時 | 2024-07-04 19:51:53 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 180 bytes |
コンパイル時間 | 450 ms |
コンパイル使用メモリ | 65,228 KB |
最終ジャッジ日時 | 2025-02-22 01:56:57 |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#include <iostream>using namespace std;int main(){cin.tie(nullptr);ios::sync_with_stdio(false);int L, R;cin >> L >> R;cout << "1\n";return 0;}