結果
| 問題 | No.8114 Prime Checker+1 |
| ユーザー |
紙袋
|
| 提出日時 | 2025-02-22 15:19:28 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 402 bytes |
| 記録 | |
| コンパイル時間 | 360 ms |
| コンパイル使用メモリ | 90,884 KB |
| 実行使用メモリ | 9,272 KB |
| 最終ジャッジ日時 | 2026-07-05 06:25:25 |
| 合計ジャッジ時間 | 1,409 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 30 |
ソースコード
#include<iostream>
#include<vector>
#include<set>
#include<algorithm>
#include<map>
using namespace std;
using ll=long long;
//tekigikousinnsiro
int main(){
string n;
cin>>n;
if(n=="2"){
cout<<0<<endl;
cout<<"Yes"<<endl;
return 0;
}
int a=stoi(n.substr(n.size()-1,1));
if(a%2==1){
cout<<1<<endl;
cout<<"No"<<endl;
}
else{
cout<<0<<endl;
cout<<"No"<<endl;
}
return 0;
}
紙袋