結果

問題 No.3177 output only nand problem
ユーザー The Forsaking
提出日時 2025-06-13 21:21:32
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 1,909 ms
コンパイル使用メモリ 192,156 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-06-13 21:21:36
合計ジャッジ時間 2,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef pair<int, int> pii;
typedef long long ll;
const int N = 2000008, MOD = 1e9 + 7, INF = 0x3f3f3f3f;
ll res;
int n, m, cnt, w[N];




int main() {
    puts("1 0 0");
    return 0;
}
0