結果
問題 | No.637 X: Yet Another FizzBuzz Problem |
ユーザー | coro65536 |
提出日時 | 2018-01-26 22:24:33 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 1,000 ms |
コード長 | 297 bytes |
コンパイル時間 | 92 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-28 18:46:55 |
合計ジャッジ時間 | 1,996 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 30 |
ソースコード
# A A = input().split() for i in range(5): A[i] = int(A[i]) count = 0 for i in range(5): if A[i] % 3 == 0 and A[i] % 5 == 0: count += 8 elif A[i] % 3 == 0: count += 4 elif A[i] % 5 == 0: count += 4 else: count += len(str(A[i])) print(count)