結果

問題 No.1762 🐙🐄🌲
ユーザー leukocyte
提出日時 2022-07-02 13:51:28
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 195 bytes
コンパイル時間 1,549 ms
コンパイル使用メモリ 165,908 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-27 07:26:14
合計ジャッジ時間 5,816 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1 RE * 2
other AC * 12 WA * 18 RE * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int N=5e5;
const int mod=998244353;
int n,p;
int main(){
	scanf("%d %d",&n,&p);
	if(n%3!=1){
		puts("0"); return 0;
	}
	assert(0);
	return 0;
}
0