結果
問題 | No.661 ハローキティはりんご3個分 |
ユーザー | jiang0503 |
提出日時 | 2018-03-18 15:07:15 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 937 bytes |
コンパイル時間 | 492 ms |
コンパイル使用メモリ | 60,868 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-06-07 21:01:57 |
合計ジャッジ時間 | 916 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
ソースコード
#include <iostream> #include <vector> using namespace std; inline int checkNumber(int &tmp) { if(tmp%8==0) { if(tmp%10==0) return 0; else return 1; } else if(tmp%10==0) return 2; return 3; } int main() { int num; int member; vector<int> array; cin>>num; array.resize(num); for(int i=0; i<num; i++) { cin>>array[i]; } for(int i=0; i<num; i++) { member=checkNumber(array[i]); switch(member) { case 0: cout<<"ikisugi"<<endl; break; case 1: cout<<"iki"<<endl; break; case 2: cout<<"sugi"<<endl; break; case 3: cout<<array[i]/3<<endl; break; default: break; } } return 0; }