結果

問題 No.3043 yukicoderへようこそ!
ユーザー titiatitia
提出日時 2019-04-01 21:25:06
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
RE  
実行時間 -
コード長 155 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 10,660 KB
実行使用メモリ 7,964 KB
最終ジャッジ日時 2023-08-17 14:06:10
合計ジャッジ時間 730 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 AC 16 ms
7,892 KB
testcase_03 AC 15 ms
7,776 KB
testcase_04 WA -
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

X=input()

if X in ["5","Welcome to yukicoder!","1+2+10","Let's enjoy"]:
    print("Hello World!")

elif 1<=int(X)<=100:
    X=int(X)
    print(X*(X+1)//2)
0