結果
問題 | No.2425 Power Range GCD |
ユーザー |
![]() |
提出日時 | 2023-08-22 11:24:04 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 307 bytes |
コンパイル時間 | 491 ms |
コンパイル使用メモリ | 39,112 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-16 07:47:43 |
合計ジャッジ時間 | 1,738 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
/* -*- coding: utf-8 -*-** 2425.cc: No.2425 Power Range GCD - yukicoder*/#include<cstdio>#include<algorithm>using namespace std;/* constant *//* typedef *//* global variables *//* subroutines *//* main */int main() {int l, r;scanf("%d%d", &l, &r);puts("1");return 0;}