結果

問題 No.1462 最弱WEAKER
ユーザー McGregorshMcGregorsh
提出日時 2023-05-10 11:29:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 64 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 87,192 KB
実行使用メモリ 71,640 KB
最終ジャッジ日時 2023-08-17 17:49:19
合計ジャッジ時間 4,069 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,388 KB
testcase_01 AC 74 ms
70,928 KB
testcase_02 AC 74 ms
71,048 KB
testcase_03 AC 74 ms
71,284 KB
testcase_04 AC 74 ms
71,152 KB
testcase_05 WA -
testcase_06 AC 74 ms
71,212 KB
testcase_07 AC 74 ms
71,332 KB
testcase_08 AC 74 ms
70,924 KB
testcase_09 AC 74 ms
71,296 KB
testcase_10 WA -
testcase_11 AC 74 ms
70,924 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 74 ms
71,072 KB
testcase_16 AC 72 ms
71,140 KB
testcase_17 AC 72 ms
71,248 KB
testcase_18 WA -
testcase_19 AC 75 ms
71,296 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N == 2:
	  print('YES')
else:
	  print('NO')
0