結果
| 問題 | No.311 z in FizzBuzzString |
| コンテスト | |
| ユーザー |
ヒッキープログラミングスレ
|
| 提出日時 | 2015-12-05 09:00:06 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 204 bytes |
| 記録 | |
| コンパイル時間 | 302 ms |
| コンパイル使用メモリ | 21,336 KB |
| 実行使用メモリ | 16,168 KB |
| 最終ジャッジ日時 | 2026-09-03 12:22:55 |
| 合計ジャッジ時間 | 2,644 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 11 |
ソースコード
from decimal import *
getcontext().rounding = ROUND_FLOOR
n = Decimal(input())
dec3 = Decimal('3')
dec5 = Decimal('5')
div3 = n / dec3
div5 = n / dec5
z_count = (div3 + div5) * Decimal('2')
print(z_count)
ヒッキープログラミングスレ