結果
| 問題 | No.2425 Power Range GCD |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-12-08 20:59:36 |
| 言語 | C# (.NET 10.0.201) |
| 結果 |
AC
|
| 実行時間 | 70 ms / 2,000 ms |
| + 684µs | |
| コード長 | 289 bytes |
| 記録 | |
| コンパイル時間 | 5,143 ms |
| コンパイル使用メモリ | 170,668 KB |
| 実行使用メモリ | 192,940 KB |
| 最終ジャッジ日時 | 2026-07-19 07:31:33 |
| 合計ジャッジ時間 | 8,072 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (98 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
using System;
class Program
{
static void Main()
{
string[] input = Console.ReadLine().Split();
int L = int.Parse(input[0]);
int R = int.Parse(input[1]);
// L < Rの場合、連続する整数のGCDは常に1
Console.WriteLine(1);
}
}