mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-07-07 18:06:58 +08:00
Upload ABC400 codes
This commit is contained in:
21
AtCoder/ABC_400/A.cpp
Normal file
21
AtCoder/ABC_400/A.cpp
Normal file
@ -0,0 +1,21 @@
|
||||
#include <bits/stdc++.h>
|
||||
#define lo long long
|
||||
#define INF INT_MAX
|
||||
#define LLM LONG_LONG_MAX
|
||||
#define endl "\n"
|
||||
|
||||
using namespace std;
|
||||
/*
|
||||
toothless. #17
|
||||
@fredcss_dev
|
||||
*/
|
||||
|
||||
int a;
|
||||
|
||||
signed main()
|
||||
{
|
||||
cin >> a;
|
||||
if (400 % a == 0) cout << 400 / a;
|
||||
else cout << -1;
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user