码迷,mamicode.com
首页 > 其他好文 > 详细

「CF80A」Panoramix's Prediction

时间:2020-03-27 11:06:33      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:http   cst   ace   lse   str   std   printf   com   fabs   

Portal

Portal1: Codeforces

Portal: Luogu

Code

#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<cmath>

using namespace std;

int n, m, pri[15] = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47};
int main() {
    scanf("%d%d", &n, &m);
    int x = -2, y = -2;
    for (int i = 0; i < 15; i++) {
        if (n == pri[i]) x = i;
        if (m == pri[i]) y = i;
    }
    if (fabs(x - y) == 1) printf("YES\n"); else printf("NO\n");
    return 0;
}

「CF80A」Panoramix's Prediction

标签:http   cst   ace   lse   str   std   printf   com   fabs   

原文地址:https://www.cnblogs.com/shenxiaohuang/p/12579522.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!