結果

問題 No.750 Frac #1
ユーザー abL8ZLsTbFabL8ZLsTbF
提出日時 2018-11-09 21:42:11
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 35 ms / 1,000 ms
コード長 839 bytes
コンパイル時間 1,011 ms
コンパイル使用メモリ 111,924 KB
実行使用メモリ 29,512 KB
最終ジャッジ日時 2024-11-21 05:44:49
合計ジャッジ時間 2,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
25,380 KB
testcase_01 AC 33 ms
27,176 KB
testcase_02 AC 31 ms
25,512 KB
testcase_03 AC 31 ms
25,432 KB
testcase_04 AC 31 ms
25,256 KB
testcase_05 AC 31 ms
25,504 KB
testcase_06 AC 31 ms
25,636 KB
testcase_07 AC 32 ms
25,428 KB
testcase_08 AC 32 ms
25,384 KB
testcase_09 AC 31 ms
25,384 KB
testcase_10 AC 31 ms
27,736 KB
testcase_11 AC 32 ms
27,480 KB
testcase_12 AC 33 ms
29,392 KB
testcase_13 AC 32 ms
27,480 KB
testcase_14 AC 32 ms
27,432 KB
testcase_15 AC 31 ms
25,376 KB
testcase_16 AC 32 ms
25,376 KB
testcase_17 AC 31 ms
27,596 KB
testcase_18 AC 31 ms
23,476 KB
testcase_19 AC 32 ms
25,388 KB
testcase_20 AC 35 ms
23,472 KB
testcase_21 AC 32 ms
27,308 KB
testcase_22 AC 32 ms
25,440 KB
testcase_23 AC 31 ms
25,376 KB
testcase_24 AC 32 ms
27,356 KB
testcase_25 AC 32 ms
25,252 KB
testcase_26 AC 32 ms
25,432 KB
testcase_27 AC 32 ms
25,384 KB
testcase_28 AC 31 ms
25,268 KB
testcase_29 AC 32 ms
25,260 KB
testcase_30 AC 31 ms
25,388 KB
testcase_31 AC 31 ms
25,252 KB
testcase_32 AC 32 ms
29,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;

class Program
{
    static void Main(string[] args)
    {
        int n = int.Parse(Console.ReadLine());
        Fraction[] frac = new Fraction[n];
        for (int i = 0; i < n; i++)
        {
            var AB = Console.ReadLine().Split().Select(int.Parse);
            frac[i] = new Fraction { Numerator = AB.First(), Denominator = AB.Last() };
        }
        frac = frac.OrderByDescending(i => i.Numerator / (double)i.Denominator).ToArray();
        foreach (var item in frac)
        {
            Console.WriteLine($"{item.Numerator} {item.Denominator}");
        }
    }
}

public class Fraction
{
    public int Numerator { get; set; }  // 分子
    public int Denominator { get; set; }    // 分母
}
0