結果
問題 | No.661 ハローキティはりんご3個分 |
ユーザー | jiang0503 |
提出日時 | 2018-03-18 14:53:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 927 bytes |
コンパイル時間 | 524 ms |
コンパイル使用メモリ | 55,004 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 19:22:54 |
合計ジャッジ時間 | 959 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> using namespace std; 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; int *array; cin>>num; array = new int[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; } } delete[] array; return 0; }