結果

問題 No.3027 114514
ユーザー furafura
提出日時 2020-05-09 04:52:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 413 bytes
コンパイル時間 1,903 ms
コンパイル使用メモリ 198,244 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 16:05:19
合計ジャッジ時間 2,296 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

int main(){
	int n; scanf("%d",&n);
	int ans;
	switch(n){
		case  2: ans=3; break;
		case  3: ans=3; break;
		case  4: ans=3; break;
		case  1: ans=7; break;
		case  5: ans=5; break;
		case  7: ans=1; break;
		case  8: ans=2; break;
		case 10: ans=0; break;
		default: ans=-8754; break;
	}
	printf("%d\n",ans);
	return 0;
}
0