#6695: TLE~~嗚嗚..


cse011417 (哈哈哈)

學校 : 國立臺中高級工業職業學校
編號 : 22273
來源 : [223.139.191.99]
最後登入時間 :
2024-09-24 11:34:08
d124. 3的倍数 | From: [114.33.41.76] | 發表日期 : 2012-06-15 22:11

#include<iostream>
#define MAX 10001
using namespace std;
int main()
{
    int b=0;
    int i;
    char s[MAX],a[1]="";
    while(1)
    {
    cin>>s;
    for (i=0; s[i]!=a[0]; i++)
    {
        b+=(s[i]-'0');
    }
    if(b%3==0)
    {
        cout<<"yes";
    }
    else
    {
        cout<<"no";
    }
    cout<<endl;
    b=0;
    }
}

 
ZeroJudge Forum