結果

問題 No.3177 output only nand problem
ユーザー bluemegane
提出日時 2025-06-14 09:24:36
言語 C#
(.NET 8.0.404)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 164 bytes
コンパイル時間 8,437 ms
コンパイル使用メモリ 171,832 KB
実行使用メモリ 185,552 KB
最終ジャッジ日時 2025-06-14 09:24:45
合計ジャッジ時間 8,082 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (121 ミリ秒)。
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        getAns();
    }
    static void getAns()
    {
        Console.WriteLine("1 1 0");
    }
}
0