結果
問題 | No.311 z in FizzBuzzString |
ユーザー | ヒッキープログラミングスレ |
提出日時 | 2015-12-05 08:39:03 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 131 bytes |
コンパイル時間 | 415 ms |
コンパイル使用メモリ | 81,964 KB |
実行使用メモリ | 67,012 KB |
最終ジャッジ日時 | 2024-09-24 21:22:55 |
合計ジャッジ時間 | 3,470 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
59,644 KB |
testcase_01 | AC | 36 ms
52,764 KB |
testcase_02 | AC | 36 ms
52,200 KB |
testcase_03 | AC | 36 ms
52,164 KB |
testcase_04 | AC | 36 ms
51,996 KB |
testcase_05 | AC | 37 ms
53,008 KB |
testcase_06 | AC | 37 ms
52,160 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
n = int(input()) c = 0 i = 1 while i <= n: if i % 3 == 0: c += 2 if i % 5 == 0: c += 2 i += 1 print(c)