結果

問題 No.687 E869120 and Constructing Array 1
ユーザー curryudon08curryudon08
提出日時 2021-02-28 22:59:55
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 241 bytes
コンパイル時間 749 ms
コンパイル使用メモリ 111,648 KB
実行使用メモリ 25,812 KB
最終ジャッジ日時 2024-04-12 10:57:52
合計ジャッジ時間 1,792 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
23,772 KB
testcase_01 AC 20 ms
25,812 KB
testcase_02 AC 20 ms
23,644 KB
testcase_03 AC 19 ms
23,532 KB
testcase_04 AC 19 ms
23,784 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 19 ms
23,640 KB
testcase_08 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace _0687
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = int.Parse(Console.ReadLine());
            Console.WriteLine(string.Format("{0} {1}", 1, n-1));
        }
    }
}
0