結果
| 問題 | No.316 もっと刺激的なFizzBuzzをください |
| コンテスト | |
| ユーザー |
kibenronrigaku1
|
| 提出日時 | 2016-02-16 15:08:44 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 146 bytes |
| 記録 | |
| コンパイル時間 | 60 ms |
| コンパイル使用メモリ | 81,568 KB |
| 実行使用メモリ | 81,656 KB |
| 最終ジャッジ日時 | 2026-07-18 03:02:43 |
| 合計ジャッジ時間 | 4,048 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 4 |
| other | RE * 33 |
ソースコード
N = raw_input() a,b,c = map(int,raw_input().split()) cnt = 0 for i in range(1,N): if (N%a == 0 or N%b == 0) or N%c == 0: cnt += 1 print cnt
kibenronrigaku1