結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー ミドリムシミドリムシ
提出日時 2018-01-26 22:21:52
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 356 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 64,640 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 18:45:54
合計ジャッジ時間 1,213 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main(){
    int ans = 0;
    for(int i = 0; i < 5; i++){
        int num;
        cin >> num;
        if(num % 3 && num % 5){
            ans += to_string(num).size();
        }else if(!(num % 3 + num % 5)){
            ans += 8;
        }else{
            ans += 4;
        }
    }
    cout << ans << endl;
}
0