結果
問題 | No.415 ぴょん |
ユーザー |
![]() |
提出日時 | 2022-10-05 00:42:53 |
言語 | D (dmd 2.109.1) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 121 bytes |
コンパイル時間 | 2,231 ms |
コンパイル使用メモリ | 204,500 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-22 16:20:04 |
合計ジャッジ時間 | 2,784 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 |
コンパイルメッセージ
/home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/std/numeric.d(2999): Warning: cannot inline function `std.numeric.gcdImpl!uint.gcdImpl`
ソースコード
import std;void main() {int N, D;readf("%d %d\n", N, D);int res = N / gcd(N, D) - 1;res.writeln;}