結果
問題 | No.1551 誕生日の三角形 |
ユーザー | donuthole |
提出日時 | 2021-06-18 23:03:11 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 62 ms / 1,000 ms |
コード長 | 972 bytes |
コンパイル時間 | 268 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 69,220 KB |
最終ジャッジ日時 | 2024-06-22 21:17:53 |
合計ジャッジ時間 | 1,474 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
68,736 KB |
testcase_01 | AC | 57 ms
69,120 KB |
testcase_02 | AC | 59 ms
68,736 KB |
testcase_03 | AC | 59 ms
68,736 KB |
testcase_04 | AC | 59 ms
68,992 KB |
testcase_05 | AC | 60 ms
69,220 KB |
testcase_06 | AC | 62 ms
68,736 KB |
testcase_07 | AC | 58 ms
69,012 KB |
testcase_08 | AC | 59 ms
69,120 KB |
testcase_09 | AC | 58 ms
68,992 KB |
testcase_10 | AC | 58 ms
69,120 KB |
ソースコード
import typing import sys import math import collections import bisect import itertools import heapq import copy # ===TEMPLATE== # sys.setrecursionlimit(10**7+1) # inf = float('inf') inf = 10**20 mod = 10 ** 9 + 7 # mod = 998244353 def ni(): return int(sys.stdin.buffer.readline()) def ns(): return map(int, sys.stdin.buffer.readline().split()) def na(): return list(map(int, sys.stdin.buffer.readline().split())) def na1(): return list(map(lambda x: int(x)-1, sys.stdin.buffer.readline().split())) def nall(): return list(map(int, sys.stdin.buffer.read().split())) def flush(): return sys.stdout.flush() def nic(): return int(sys.stdin.readline()) def nsc(): return map(int, sys.stdin.readline().split()) def nac(): return list(map(int, sys.stdin.readline().split())) def na1c(): return list(map(lambda x: int(x)-1, sys.stdin.readline().split())) # ===CODE=== def main(): l = ni() e = l/3 print(math.sqrt(3)/4*e*e) if __name__ == '__main__': main()