結果

問題 No.3177 output only nand problem
ユーザー 03吳柏翰
提出日時 2025-06-20 20:57:36
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 1,734 ms
コンパイル使用メモリ 194,492 KB
実行使用メモリ 7,840 KB
最終ジャッジ日時 2025-06-20 20:57:42
合計ジャッジ時間 2,097 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<iostream>
//#include <unistd.h>
//#include<cstdio>
using namespace std;
//#pragma GCC optimize("Ofast")
//#pragma GCC optimize ("unroll-loops")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
#define int long long
typedef long long ll;
#define F first
#define S second
#define pb push_back
signed main()
{
    cin.tie(0);
    ios_base::sync_with_stdio(0);
    cout<<"1 1 0"<<'\n';

}
0