見出しは#の数に応じてそれぞれHTMLの<h1>~<h6>
タグに対応します
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use pnet_macros::Packet; | |
use pnet_macros_support::{packet::Packet, types::*}; | |
#[derive(Packet)] | |
pub struct SpeakingStart { | |
length: u13le, | |
ty: u3, | |
snowflake: u64le, | |
timestamp: u64le, | |
#[payload] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub mod base { | |
pub trait Zero: Sized { | |
fn zero() -> Self; | |
fn is_zero(&self) -> bool; | |
} | |
pub trait One: Sized { | |
fn one() -> Self; | |
fn is_one(&self) -> bool; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub mod modint { | |
use std::cell::RefCell; | |
use std::ops::*; | |
type Num = u64; | |
thread_local!( | |
static MOD: RefCell<Num> = RefCell::new(0); | |
); | |
pub fn set_modint<T>(v: T) | |
where | |
Num: From<T>, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import matplotlib.pyplot as plt | |
import warnings | |
warnings.simplefilter('ignore') | |
t=np.linspace(0,112*np.pi,6000) | |
sin=np.sin | |
sqrt=np.sqrt | |
pi=np.pi | |
theta=lambda x:np.where(x>=0,1,0) | |
sgn=lambda x:x/abs(x) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2019-11-07T02:25:02.492Z","extensionVersion":"v3.4.3"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// _/ _/ _/ _/ | |
// _/ _/ _/_/_/ _/_/_/ _/_/_/_/ _/_/_/ | |
// _/_/_/_/ _/ _/ _/ _/ _/ _/ _/ _/ | |
// _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ | |
// _/ _/ _/ _/ _/ _/_/_/ _/_/ _/_/_/ | |
// C++ Conpetitive Programming Template | |
// Ver 1.1 (codename: Hinata) | |
// Last Modified : 2019-05-28 | |
// Created : 2019-05-25 | |
// Auther : shirataki3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <cstdint> | |
#include <chrono> | |
#include <vector> | |
const long long MOD = (long long)1e9+7; | |
using namespace std; | |
// 剰余を考慮した整数のクラス | |
template <uint_fast64_t Mod> class Mint { | |
using u64 = uint64_t; |
NewerOlder