結果

問題 No.311 z in FizzBuzzString
ユーザー 簡易ログイン簡易ログイン
提出日時 2015-12-05 08:10:21
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 75 ms / 1,500 ms
コード長 44 bytes
コンパイル時間 1,688 ms
コンパイル使用メモリ 76,304 KB
実行使用メモリ 75,652 KB
最終ジャッジ日時 2024-09-24 21:22:25
合計ジャッジ時間 3,153 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
75,428 KB
testcase_01 AC 70 ms
75,652 KB
testcase_02 AC 69 ms
75,552 KB
testcase_03 AC 71 ms
75,512 KB
testcase_04 AC 72 ms
75,436 KB
testcase_05 AC 75 ms
75,428 KB
testcase_06 AC 74 ms
75,292 KB
testcase_07 AC 70 ms
75,448 KB
testcase_08 AC 68 ms
75,396 KB
testcase_09 AC 71 ms
75,452 KB
testcase_10 AC 73 ms
75,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(raw_input())
ans=n/3*2+n/5*2
print ans
0