結果
問題 | No.750 Frac #1 |
ユーザー | Himatsubushin |
提出日時 | 2018-12-17 13:43:57 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,141 bytes |
コンパイル時間 | 958 ms |
コンパイル使用メモリ | 112,816 KB |
実行使用メモリ | 26,140 KB |
最終ジャッジ日時 | 2024-09-25 07:34:59 |
合計ジャッジ時間 | 2,848 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
23,932 KB |
testcase_01 | AC | 24 ms
23,800 KB |
testcase_02 | AC | 24 ms
23,808 KB |
testcase_03 | AC | 24 ms
23,672 KB |
testcase_04 | AC | 24 ms
23,856 KB |
testcase_05 | AC | 26 ms
26,140 KB |
testcase_06 | AC | 24 ms
23,956 KB |
testcase_07 | AC | 26 ms
25,852 KB |
testcase_08 | RE | - |
testcase_09 | AC | 25 ms
23,824 KB |
testcase_10 | AC | 25 ms
23,804 KB |
testcase_11 | AC | 24 ms
23,988 KB |
testcase_12 | AC | 24 ms
24,240 KB |
testcase_13 | AC | 24 ms
23,844 KB |
testcase_14 | AC | 24 ms
25,840 KB |
testcase_15 | RE | - |
testcase_16 | AC | 25 ms
24,100 KB |
testcase_17 | AC | 24 ms
24,188 KB |
testcase_18 | AC | 25 ms
25,884 KB |
testcase_19 | AC | 25 ms
26,008 KB |
testcase_20 | RE | - |
testcase_21 | AC | 25 ms
25,888 KB |
testcase_22 | AC | 24 ms
22,072 KB |
testcase_23 | AC | 24 ms
26,012 KB |
testcase_24 | AC | 24 ms
24,064 KB |
testcase_25 | AC | 24 ms
23,984 KB |
testcase_26 | AC | 24 ms
23,932 KB |
testcase_27 | AC | 24 ms
21,680 KB |
testcase_28 | RE | - |
testcase_29 | AC | 25 ms
25,756 KB |
testcase_30 | AC | 23 ms
23,800 KB |
testcase_31 | AC | 24 ms
24,100 KB |
testcase_32 | AC | 24 ms
26,004 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; namespace No750_Frac_1 { class Program { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); int[] a = new int[n]; int[] b = new int[n]; string[] data = new string[2]; int[] value = new int[n]; int[] rank = new int[n]; int lcm; for (int i = 0; i < n; i++) { data = Console.ReadLine().Split(' '); a[i] = int.Parse(data[0]); b[i] = int.Parse(data[1]); } lcm = Lcm(b); for (int i = 0; i < n; i++) { value[i] = a[i] * lcm / b[i]; rank[i] = i; } Sort(value, ref rank); for (int i = 0; i < n; i++) Console.WriteLine(a[rank[i]] + " " + b[rank[i]]); } static void Sort(int[] value, ref int[] rank) { int n = value.Length; for (int i = 0; i < n - 1; i++) { for (int j = i; j < n; j++) { if (value[i] < value[j]) { Swap(ref value[i], ref value[j]); Swap(ref rank[i], ref rank[j]); } } } } static int Lcm(int[] num) { int result = Lcm(num[0], num[1]); for (int i = 2; i < num.Length - 1; i++) { result = Lcm(result, num[i]); } return result; } static int Lcm(int a, int b) { return a * b / Gcd(a, b); } static int Gcd(int a, int b) { if (a < b) Swap(ref a, ref b); while (b != 0) { int rem = a % b; a = b; b = rem; } return a; } static void Swap(ref int a, ref int b) { int temp = a; a = b; b = temp; } } }