結果

問題 No.750 Frac #1
ユーザー yurarayurara
提出日時 2019-04-11 23:44:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 552 bytes
コンパイル時間 1,118 ms
コンパイル使用メモリ 115,320 KB
実行使用メモリ 28,008 KB
最終ジャッジ日時 2024-07-20 05:14:43
合計ジャッジ時間 3,252 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
26,032 KB
testcase_01 AC 34 ms
23,988 KB
testcase_02 AC 34 ms
27,872 KB
testcase_03 AC 33 ms
27,992 KB
testcase_04 AC 33 ms
25,776 KB
testcase_05 AC 33 ms
27,824 KB
testcase_06 AC 34 ms
26,084 KB
testcase_07 AC 34 ms
26,028 KB
testcase_08 AC 34 ms
26,040 KB
testcase_09 AC 34 ms
26,172 KB
testcase_10 AC 34 ms
28,008 KB
testcase_11 AC 33 ms
25,900 KB
testcase_12 AC 34 ms
25,912 KB
testcase_13 AC 33 ms
25,780 KB
testcase_14 AC 33 ms
27,956 KB
testcase_15 AC 33 ms
26,036 KB
testcase_16 AC 34 ms
23,864 KB
testcase_17 AC 34 ms
26,080 KB
testcase_18 AC 34 ms
25,912 KB
testcase_19 AC 33 ms
25,912 KB
testcase_20 AC 33 ms
25,912 KB
testcase_21 AC 34 ms
26,044 KB
testcase_22 AC 34 ms
25,900 KB
testcase_23 AC 33 ms
26,040 KB
testcase_24 AC 33 ms
25,788 KB
testcase_25 AC 33 ms
23,604 KB
testcase_26 AC 34 ms
25,952 KB
testcase_27 AC 36 ms
25,784 KB
testcase_28 AC 36 ms
25,916 KB
testcase_29 AC 34 ms
27,752 KB
testcase_30 AC 33 ms
25,952 KB
testcase_31 AC 34 ms
26,044 KB
testcase_32 AC 37 ms
27,868 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;

public class Program
{
    public static void Main()
    {
        var ct = int.Parse(Console.ReadLine());
        var inputs = new List<List<double>>();

        for (var i = 0; i < ct; i++)
            inputs.Add(Console.ReadLine().Split(' ').Select(s => double.Parse(s)).ToList());

        inputs.Sort((a, b) => (a[0] / a[1]) < (b[0] / b[1]) ? 1 : -1);

        foreach ( var input in inputs )
            Console.WriteLine("{0} {1}", input[0], input[1]);

        return;
    }
}
0