結果

問題 No.3003 多項式の割り算 〜hard〜
ユーザー kakel-san
提出日時 2025-01-17 21:49:58
言語 C#
(.NET 8.0.404)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 8,785 ms
コンパイル使用メモリ 170,288 KB
実行使用メモリ 188,704 KB
最終ジャッジ日時 2025-01-17 21:50:19
合計ジャッジ時間 11,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (118 ミリ秒)。
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (a, b) = (c[0], c[1]);
        if (b % 3 == 2)
        {
            WriteLine($"{-a} {-a}");
        }
        else if (b % 3 == 0)
        {
            WriteLine($"0 {a}");
        }
        else
        {
            WriteLine($"{a} 0");
        }
    }
}
0