首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
743a专题
743A. Vladik and flights codeforces
#include<bits/stdc++.h>using namespace std;char str[100005];int main(){int n,a,b;cin>>n>>a>>b;for(int i=1;i<=n;i++){cin>>str[i];}if(str[a]!=str[b]){cout<<1<<endl;}else{cout<<0<<endl;}return 0;}
阅读更多...