結果
問題 | No.637 X: Yet Another FizzBuzz Problem |
ユーザー |
![]() |
提出日時 | 2020-01-29 18:23:45 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 303 bytes |
コンパイル時間 | 1,364 ms |
コンパイル使用メモリ | 166,804 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 01:51:10 |
合計ジャッジ時間 | 2,323 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 30 |
ソースコード
#include <bits/stdc++.h> #define int long long using namespace std; signed main() { int A; int ans = 0; for( int i=0; i < 5; i++ ){ cin >> A; if( A%3 == 0 && A%5 == 0 ) ans += 8; else if(A%3 == 0 || A%5 == 0 ) ans += 4; else{ string S = to_string(A); ans += S.size(); } } cout << ans << endl; }