結果
| 問題 |
No.648 お や す み
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-01-17 20:48:46 |
| 言語 | Nim (2.2.0) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 255 bytes |
| コンパイル時間 | 3,140 ms |
| コンパイル使用メモリ | 63,872 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-01 10:11:43 |
| 合計ジャッジ時間 | 5,134 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 WA * 53 |
ソースコード
import strutils,math template get*():string = stdin.readLine().strip() proc sqrt(n:uint):uint = n.float.sqrt.uint let n = get().parseInt().uint let c = 1u + 8u * n if c.sqrt * c.sqrt != c or c.sqrt mod 2 == 0: quit "NO",0 echo "YES\n",(c.sqrt - 1 ) div 2