結果

問題 No.2425 Power Range GCD
ユーザー hiro71687k
提出日時 2023-08-30 18:35:33
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 4,014 ms
コンパイル使用メモリ 250,092 KB
最終ジャッジ日時 2025-02-16 15:39:23
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll mod=1000000007;
ll inf=10099999999999990;
int main(){
    ll l,r;
    cin >> l >> r;
    cout << 1 << endl;
}
0