結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー ei1333333ei1333333
提出日時 2018-01-26 22:21:40
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 275 bytes
コンパイル時間 1,931 ms
コンパイル使用メモリ 193,788 KB
最終ジャッジ日時 2025-01-05 07:55:50
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main()
{
  int ret = 0;
  for(int i = 0; i < 5; i++) {
    int x;
    cin >> x;
    if(x % 15 == 0) ret += 8;
    else if(x % 3 == 0 || x % 5 == 0) ret += 4;
    else ret += to_string(x).size();
  }
  cout << ret << endl;
}
0