結果
問題 |
No.1799 Summer Day
|
ユーザー |
|
提出日時 | 2022-01-29 21:49:01 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 243 bytes |
コンパイル時間 | 620 ms |
コンパイル使用メモリ | 82,172 KB |
実行使用メモリ | 53,860 KB |
最終ジャッジ日時 | 2025-01-02 18:23:13 |
合計ジャッジ時間 | 2,907 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 16 WA * 5 |
ソースコード
from sys import stdin def inputSynario(): input = stdin.readline num_list = list(map(int,input().rstrip().split())) return num_list[0], num_list[1] (N,S)=inputSynario() if(25<=S and 30*N>S): print("Yes") else: print("No")