結果
| 問題 |
No.8098 tan 2
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-03-31 22:28:43 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 272 bytes |
| コンパイル時間 | 79 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-09-23 01:16:32 |
| 合計ジャッジ時間 | 1,037 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 7 WA * 5 |
ソースコード
import sys
def main():
sys.setrecursionlimit(1000000)
input = lambda: sys.stdin.readline()[:-1]
I = int(input())
if I == 45:
print("Yes")
else:
print("No")
if not __debug__:
f = open(sys.argv[1], "r")
sys.stdin = f
main()