結果

問題 No.2557 緑以下コンテスト
ユーザー loop0919loop0919
提出日時 2023-09-19 14:58:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 118 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 53,016 KB
最終ジャッジ日時 2024-09-25 22:37:05
合計ジャッジ時間 946 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,092 KB
testcase_01 AC 34 ms
51,752 KB
testcase_02 WA -
testcase_03 AC 33 ms
52,316 KB
testcase_04 AC 33 ms
52,344 KB
testcase_05 AC 33 ms
51,924 KB
testcase_06 AC 32 ms
52,972 KB
testcase_07 AC 32 ms
52,236 KB
testcase_08 AC 32 ms
53,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# test: 境界値チェック

N = int(input())

assert(1 <= N <= 4000)

print("green" if N <= 1200 else "difficult")
0