結果
| 問題 | No.648 お や す み |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-12-25 03:29:29 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 382 bytes |
| コンパイル時間 | 74 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 21,632 KB |
| 最終ジャッジ日時 | 2024-12-25 03:30:50 |
| 合計ジャッジ時間 | 76,980 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 36 WA * 26 TLE * 22 |
ソースコード
def main():
inp1 = int(input())
sec = 1
sums = 0
loop_flg = True
while loop_flg:
if inp1 == sums:
print("YES")
print(sec)
break
elif inp1 < sums:
print("NO")
break
else:
pass
sums = sums + sec
sec += 1
if __name__ == '__main__':
main()