結果
問題 | No.1198 お菓子配り-1 |
ユーザー | PCTprobability |
提出日時 | 2020-08-22 13:25:24 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 644 bytes |
コンパイル時間 | 2,611 ms |
コンパイル使用メモリ | 192,536 KB |
最終ジャッジ日時 | 2025-01-13 07:34:07 |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 14 |
ソースコード
#include <bits/stdc++.h> using namespace std; int s(char a){ if(a=='0'||a=='4'||a=='8'){ return 0; } else if(a=='1'||a=='5'||a=='9'){ return 1; } else if(a=='2'||a=='6'){ return 2; } else{ return 3; } } int main() { string k; cin>>k; if(k=="1"||k=="4"){ cout<<-1<<endl; } else if(k.size()==1){ int z=s(k.at(0)); if(z%4==2){ cout<<-1<<endl; } else{ cout<<1<<endl; } } else{ int ans=0; int z=k.size(); if(((s(k.at(z-2)))*10+s(k.at(z-1)))%4==2){ cout<<-1<<endl; } else{ cout<<1<<endl; } } }