結果

問題 No.337 P versus NP
ユーザー nak2yoshinak2yoshi
提出日時 2016-02-25 01:10:40
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 757 ms
コンパイル使用メモリ 108,672 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-12 03:06:42
合計ジャッジ時間 1,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio,
       std.conv,
       std.string,
       std.range,
       std.math,
       std.bigint,
       std.algorithm;

void main()
{
    
    auto input = readln.split.to!(int[]);
    auto N = input[0], P = input[1];

    (P == N * P ? "=" : "!=").writeln;
}
0