結果
問題 | No.894 二種類のバス |
ユーザー | bluemegane |
提出日時 | 2020-09-06 17:34:27 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 851 bytes |
コンパイル時間 | 748 ms |
コンパイル使用メモリ | 112,072 KB |
実行使用メモリ | 26,240 KB |
最終ジャッジ日時 | 2024-05-06 21:17:39 |
合計ジャッジ時間 | 1,954 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
23,772 KB |
testcase_01 | AC | 23 ms
23,816 KB |
testcase_02 | AC | 23 ms
24,112 KB |
testcase_03 | AC | 23 ms
21,940 KB |
testcase_04 | AC | 24 ms
23,780 KB |
testcase_05 | AC | 24 ms
23,780 KB |
testcase_06 | AC | 22 ms
23,856 KB |
testcase_07 | AC | 23 ms
21,680 KB |
testcase_08 | WA | - |
testcase_09 | AC | 22 ms
21,816 KB |
testcase_10 | AC | 23 ms
26,240 KB |
testcase_11 | AC | 21 ms
24,028 KB |
testcase_12 | AC | 22 ms
24,040 KB |
testcase_13 | AC | 23 ms
24,092 KB |
testcase_14 | AC | 23 ms
21,940 KB |
testcase_15 | AC | 22 ms
25,860 KB |
testcase_16 | AC | 21 ms
24,084 KB |
testcase_17 | AC | 21 ms
24,024 KB |
testcase_18 | AC | 22 ms
24,160 KB |
testcase_19 | AC | 23 ms
25,816 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using static System.Math; using System; public class Hello { static void Main() { string[] line = Console.ReadLine().Trim().Split(' '); var t = long.Parse(line[0]); var a = long.Parse(line[1]); var b = long.Parse(line[2]); var ma = Max(a, b); var mi = Min(a, b); var gcd = Gcd(a, b); var Lcm = (ma / gcd) * mi; var tpa = t / a; if (t % a == 0) tpa--; var tpb = t / b; if (t % b == 0) tpb--; var tpLcm = t / Lcm; if (t % Lcm == 0) tpLcm--; var ans = tpa + tpb + 1 - tpLcm; Console.WriteLine(ans); } static long Gcd(long a,long b) { if (a < b) return Gcd(b, a); while (b != 0) { var w = a % b; a = b; b = w; } return a; } }