結果
問題 | No.311 z in FizzBuzzString |
ユーザー | syunsuke |
提出日時 | 2018-07-17 00:38:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 157 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-24 22:11:07 |
合計ジャッジ時間 | 989 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 32 ms
10,624 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 30 ms
10,624 KB |
testcase_09 | AC | 29 ms
10,624 KB |
testcase_10 | WA | - |
ソースコード
N=int(input()) A=N//15*16 B=N%15 count=0 if B==0: count=0 else: for i in range(1,B): if i%3==0 or i%5==0: count+=2 print(A+count)