結果
問題 | No.415 ぴょん |
ユーザー |
|
提出日時 | 2017-10-26 10:31:12 |
言語 | D (dmd 2.109.1) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 202 bytes |
コンパイル時間 | 654 ms |
コンパイル使用メモリ | 105,136 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-12 22:07:32 |
合計ジャッジ時間 | 1,624 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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.algorithm, std.conv, std.range, std.stdio, std.string;import std.numeric; // gcd, fftvoid main(){auto rd = readln.split.to!(int[]), n = rd[0], d = rd[1];writeln(n/gcd(n, d)-1);}