結果

問題 No.2425 Power Range GCD
ユーザー InTheBloom
提出日時 2023-08-18 21:14:35
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 4,056 ms
コンパイル使用メモリ 170,880 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-28 05:13:12
合計ジャッジ時間 4,964 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    int L, R; readln.read(L, R);
    solve(L, R);
}

void solve (int L, int R) {
    // x と x+1 は互いに素だよね??
    writeln(1);
}

void read(T...)(string S, ref T args) {
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0