結果

問題 No.1040 垂直大学
ユーザー hotaka0213hotaka0213
提出日時 2020-06-05 18:08:49
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 157 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 62,604 KB
実行使用メモリ 17,096 KB
最終ジャッジ日時 2024-12-16 04:53:06
合計ジャッジ時間 31,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 WA -
testcase_03 TLE -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 TLE -
testcase_08 AC 2 ms
10,496 KB
testcase_09 AC 2 ms
8,576 KB
testcase_10 AC 2 ms
10,020 KB
testcase_11 AC 2 ms
8,576 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
int main(){
	int N;
	std::cin>>N;
	while(N<360){
		N-=360;
	}
	if(N==90){
		std::cout<<"Yes";
	}else{
		std::cout<<"No";
	}
	return 0;
}
0