結果

問題 No.685 Logical Operations
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-11 23:51:22
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 408 bytes
コンパイル時間 2,032 ms
コンパイル使用メモリ 74,884 KB
実行使用メモリ 46,924 KB
最終ジャッジ日時 2024-06-28 09:05:42
合計ジャッジ時間 6,569 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
46,924 KB
testcase_01 AC 127 ms
41,396 KB
testcase_02 AC 132 ms
41,312 KB
testcase_03 AC 130 ms
41,496 KB
testcase_04 AC 127 ms
41,388 KB
testcase_05 AC 123 ms
41,200 KB
testcase_06 AC 129 ms
41,156 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        long n = in.nextLong();

        int c = 0;
        for(long i = 0; i <= n; i++) {
            for(long j = i; j <= n; j++) {
                if((i&j) < (i^j) && (i^j) < (i|j))
                    c++;
            }
        }

        System.out.println(c%1000000007);
    }
}
0